Package ghidra.framework.options
Interface CustomOption
- 
- All Known Implementing Classes:
- AddressFieldOptionsWrappedOption,- ArrayElementWrappedOption,- ManualViewerCommandWrappedOption,- NamespaceWrappedOption
 
 public interface CustomOption
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreadState(SaveState saveState)Concrete subclass of WrappedOption should read all of its state from the given saveState object.voidwriteState(SaveState saveState)Concrete subclass of WrappedOption should write all of its state to the given saveState object.
 
- 
- 
- 
Method Detail- 
readStatevoid readState(SaveState saveState) Concrete subclass of WrappedOption should read all of its state from the given saveState object.- Parameters:
- saveState- container of state information
 
 - 
writeStatevoid writeState(SaveState saveState) Concrete subclass of WrappedOption should write all of its state to the given saveState object.- Parameters:
- saveState- container of state information
 
 
- 
 
-