Package ghidra.app.util.bin.format.objc2
Class ObjectiveC2_MethodList
- java.lang.Object
-
- ghidra.app.util.bin.format.objectiveC.ObjectiveC_MethodList
-
- ghidra.app.util.bin.format.objc2.ObjectiveC2_MethodList
-
- All Implemented Interfaces:
StructConverter
public class ObjectiveC2_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
-
-
Constructor Summary
Constructors Constructor Description ObjectiveC2_MethodList(ObjectiveC2_State state, BinaryReader reader, ObjectiveC_MethodType methodType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCount()
long
getEntsizeAndFlags()
DataType
toDataType()
Returns a structure datatype representing the contents of the implementor of this interface.static DataType
toGenericDataType()
-
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
-
-
Constructor Detail
-
ObjectiveC2_MethodList
public ObjectiveC2_MethodList(ObjectiveC2_State state, BinaryReader reader, ObjectiveC_MethodType methodType) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
getEntsizeAndFlags
public long getEntsizeAndFlags()
-
getCount
public long getCount()
-
toGenericDataType
public static DataType toGenericDataType() 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
-
-