Package ghidra.app.util.viewer.field
Class NamespaceWrappedOption
- java.lang.Object
-
- ghidra.app.util.viewer.field.NamespaceWrappedOption
-
- All Implemented Interfaces:
CustomOption
public class NamespaceWrappedOption extends java.lang.Object implements CustomOption
An option class that allows the user to edit a related group of options pertaining to namespace display.
-
-
Field Summary
-
Fields inherited from interface ghidra.framework.options.CustomOption
CUSTOM_OPTION_CLASS_NAME_KEY
-
-
Constructor Summary
Constructors Constructor Description NamespaceWrappedOption()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetLocalPrefixText()inthashCode()booleanisShowLibraryInNamespace()booleanisShowLocalNamespace()booleanisShowNonLocalNamespace()booleanisUseLocalPrefixOverride()voidreadState(SaveState saveState)Concrete subclass of WrappedOption should read all of its state from the given saveState object.voidsetLocalPrefixText(java.lang.String localPrefixText)voidsetShowLibraryInNamespace(boolean showLibraryInNamespace)voidsetShowLocalNamespace(boolean showLocalNamespace)voidsetShowNonLocalNamespace(boolean showNonLocalNamespace)voidsetUseLocalPrefixOverride(boolean useLocalPrefixOverride)voidwriteState(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, wait
-
Methods inherited from interface ghidra.framework.options.CustomOption
toString
-
-
-
-
Method Detail
-
isShowLocalNamespace
public boolean isShowLocalNamespace()
-
isShowNonLocalNamespace
public boolean isShowNonLocalNamespace()
-
getLocalPrefixText
public java.lang.String getLocalPrefixText()
-
setShowLocalNamespace
public void setShowLocalNamespace(boolean showLocalNamespace)
-
setShowNonLocalNamespace
public void setShowNonLocalNamespace(boolean showNonLocalNamespace)
-
setUseLocalPrefixOverride
public void setUseLocalPrefixOverride(boolean useLocalPrefixOverride)
-
isUseLocalPrefixOverride
public boolean isUseLocalPrefixOverride()
-
setLocalPrefixText
public void setLocalPrefixText(java.lang.String localPrefixText)
-
isShowLibraryInNamespace
public boolean isShowLibraryInNamespace()
-
setShowLibraryInNamespace
public void setShowLibraryInNamespace(boolean showLibraryInNamespace)
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
readState
public void readState(SaveState saveState)
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
public void writeState(SaveState saveState)
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
-
-