Class Objc1MethodList
java.lang.Object
ghidra.app.util.bin.format.objc.ObjcTypeMetadataStructure
ghidra.app.util.bin.format.objc.ObjcMethodList
ghidra.app.util.bin.format.objc.objc1.Objc1MethodList
- All Implemented Interfaces:
StructConverter
-
Field Summary
FieldsFields inherited from class ghidra.app.util.bin.format.objc.ObjcMethodList
methodsFields inherited from class ghidra.app.util.bin.format.objc.ObjcTypeMetadataStructure
base, DATA_TYPE_CATEGORY, is32bit, isArm, pointerSize, program, state -
Method Summary
Modifier and TypeMethodDescriptionintReturns a structure datatype representing the contents of the implementor of this interface.static DataTypetoGenericDataType(int pointerSize) Methods inherited from class ghidra.app.util.bin.format.objc.ObjcMethodList
applyTo, getMethodsMethods inherited from class ghidra.app.util.bin.format.objc.ObjcTypeMetadataStructure
getBase, getPointerSize, getProgram, getState, is32bit, isArm
-
Field Details
-
NAME
- See Also:
-
-
Method Details
-
getObsolete
-
getMethodCount
public int getMethodCount() -
toGenericDataType
- Throws:
DuplicateNameException
-
toDataType
Description copied from interface:StructConverterReturns 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:
-