Class ObjectiveC1_MethodList
java.lang.Object
ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
ghidra.app.util.bin.format.objectiveC.ObjectiveC1_MethodList
- All Implemented Interfaces:
StructConverter
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
_index, _state, methods
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns a structure datatype representing the contents of the implementor of this interface.static DataType
Methods inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
applyTo, getMethods
-
Field Details
-
NAME
- See Also:
-
-
Method Details
-
getObsolete
-
getMethodCount
public int getMethodCount() -
toGenericDataType
- Throws:
DuplicateNameException
-
toDataType
Description copied from interface:StructConverter
Returns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }
The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already existsIOException
- if an IO-related error occurs- See Also:
-