Class ObjectiveC1_Method
java.lang.Object
ghidra.app.util.bin.format.objectiveC.ObjectiveC_Method
ghidra.app.util.bin.format.objectiveC.ObjectiveC1_Method
- All Implemented Interfaces:
StructConverter
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_Method
_index, _methodType, _state
-
Method Summary
Methods inherited from class ghidra.app.util.bin.format.objectiveC.ObjectiveC_Method
applyTo, getIndex, getMethodType
-
Method Details
-
getName
- Specified by:
getName
in classObjectiveC_Method
-
getTypes
- Specified by:
getTypes
in classObjectiveC_Method
-
getImplementation
public long getImplementation()- Specified by:
getImplementation
in classObjectiveC_Method
-
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:
-