Package ghidra.app.util.viewer.field
Class AddressFieldOptionsWrappedOption
java.lang.Object
ghidra.app.util.viewer.field.AddressFieldOptionsWrappedOption
- All Implemented Interfaces:
CustomOption
An option class that allows the user to edit a related group of options pertaining to
address field display.
-
Field Summary
Fields inherited from interface ghidra.framework.options.CustomOption
CUSTOM_OPTION_CLASS_NAME_KEY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanintinthashCode()booleanvoidConcrete subclass of WrappedOption should read all of its state from the given saveState object.booleanvoidsetMinimumHexDigits(int numDigits) voidsetPadWithZeros(boolean padWithZeros) voidsetRightJustify(boolean b) voidsetShowBlockName(boolean b) booleanvoidwriteState(SaveState saveState) Concrete subclass of WrappedOption should write all of its state to the given saveState object.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.framework.options.CustomOption
toString
-
Constructor Details
-
AddressFieldOptionsWrappedOption
public AddressFieldOptionsWrappedOption()
-
-
Method Details
-
padWithZeros
public boolean padWithZeros() -
getMinimumHexDigits
public int getMinimumHexDigits() -
rightJustify
public boolean rightJustify() -
showBlockName
public boolean showBlockName() -
setPadWithZeros
public void setPadWithZeros(boolean padWithZeros) -
setMinimumHexDigits
public void setMinimumHexDigits(int numDigits) -
setShowBlockName
public void setShowBlockName(boolean b) -
setRightJustify
public void setRightJustify(boolean b) -
equals
-
hashCode
public int hashCode() -
readState
Description copied from interface:CustomOptionConcrete subclass of WrappedOption should read all of its state from the given saveState object.- Specified by:
readStatein interfaceCustomOption- Parameters:
saveState- container of state information
-
writeState
Description copied from interface:CustomOptionConcrete subclass of WrappedOption should write all of its state to the given saveState object.- Specified by:
writeStatein interfaceCustomOption- Parameters:
saveState- container of state information
-