Package ghidra.program.database
Class SpecExtension.DocInfo
- java.lang.Object
-
- ghidra.program.database.SpecExtension.DocInfo
-
- Enclosing class:
- SpecExtension
public static class SpecExtension.DocInfo extends java.lang.Object
Helper class for collecting information about an extension XML document and constructing its option name for storage
-
-
Constructor Summary
Constructors Constructor Description DocInfo(java.lang.String document)
Construct by directly pulling information from the XML document
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFormalName()
java.lang.String
getOptionName()
SpecExtension.Type
getType()
boolean
isOverride()
-
-
-
Method Detail
-
getType
public final SpecExtension.Type getType()
- Returns:
- the Type of the extension
-
getFormalName
public final java.lang.String getFormalName()
- Returns:
- the formal name of the extension
-
getOptionName
public final java.lang.String getOptionName()
- Returns:
- the option name associated with the extension
-
isOverride
public final boolean isOverride()
- Returns:
- true if the extension overrides a core object
-
-