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.StringNAME- 
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 intgetMethodCount()ObjectiveC1_MethodListgetObsolete()DataTypetoDataType()Returns a structure datatype representing the contents of the implementor of this interface.static DataTypetoGenericDataType(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: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 existsjava.io.IOException- See Also:
 StructureDataType
 
 - 
 
 -