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
public class ObjectiveC1_MethodList extends ObjectiveC_MethodList
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
-
Fields inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
_index, _state, methods
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMethodCount()
ObjectiveC1_MethodList
getObsolete()
DataType
toDataType()
Returns a structure datatype representing the contents of the implementor of this interface.static DataType
toGenericDataType(ObjectiveC1_State state)
-
Methods inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
applyTo, getMethods
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getObsolete
public ObjectiveC1_MethodList getObsolete()
-
getMethodCount
public int getMethodCount()
-
toGenericDataType
public static DataType toGenericDataType(ObjectiveC1_State state) throws DuplicateNameException
- Throws:
DuplicateNameException
-
toDataType
public DataType toDataType() throws DuplicateNameException, java.io.IOException
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 existsjava.io.IOException
- See Also:
StructureDataType
-
-