Package ghidra.framework.options
Class WrappedDate
- java.lang.Object
-
- ghidra.framework.options.WrappedDate
-
- All Implemented Interfaces:
WrappedOption
public class WrappedDate extends java.lang.Object implements WrappedOption
-
-
Constructor Summary
Constructors Constructor Description WrappedDate()WrappedDate(java.util.Date date)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetObject()Get the object that is the property value.OptionTypegetOptionType()voidreadState(SaveState saveState)Concrete subclass of WrappedOption should read all of its state from the given saveState object.java.lang.StringtoString()voidwriteState(SaveState saveState)Concrete subclass of WrappedOption should write all of its state to the given saveState object.
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
readState
public void readState(SaveState saveState)
Description copied from interface:WrappedOptionConcrete subclass of WrappedOption should read all of its state from the given saveState object.- Specified by:
readStatein interfaceWrappedOption- Parameters:
saveState- container of state information
-
writeState
public void writeState(SaveState saveState)
Description copied from interface:WrappedOptionConcrete subclass of WrappedOption should write all of its state to the given saveState object.- Specified by:
writeStatein interfaceWrappedOption- Parameters:
saveState- container of state information
-
getObject
public java.lang.Object getObject()
Description copied from interface:WrappedOptionGet the object that is the property value.- Specified by:
getObjectin interfaceWrappedOption
-
getOptionType
public OptionType getOptionType()
- Specified by:
getOptionTypein interfaceWrappedOption
-
-