Class ObjectiveC1_Protocol
- java.lang.Object
-
- ghidra.app.util.bin.format.objectiveC.ObjectiveC1_Protocol
-
- All Implemented Interfaces:
StructConverter
public class ObjectiveC1_Protocol extends java.lang.Object implements StructConverter
-
-
Constructor Summary
Constructors Constructor Description ObjectiveC1_Protocol(ObjectiveC1_State state, BinaryReader reader)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyTo()
ObjectiveC1_ProtocolMethodList
getClassMethods()
ObjectiveC1_ProtocolMethodList
getInstanceMethods()
int
getIsa()
java.lang.String
getName()
ObjectiveC1_ProtocolList
getProtocolList()
DataType
toDataType()
Returns a structure datatype representing the contents of the implementor of this interface.
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
SIZEOF
public static final int SIZEOF
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ObjectiveC1_Protocol
public ObjectiveC1_Protocol(ObjectiveC1_State state, BinaryReader reader) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
getIsa
public int getIsa()
-
getName
public java.lang.String getName()
-
getProtocolList
public ObjectiveC1_ProtocolList getProtocolList()
-
getInstanceMethods
public ObjectiveC1_ProtocolMethodList getInstanceMethods()
-
getClassMethods
public ObjectiveC1_ProtocolMethodList getClassMethods()
-
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.
- Specified by:
toDataType
in interfaceStructConverter
- 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
-
applyTo
public void applyTo() throws java.lang.Exception
- Throws:
java.lang.Exception
-
-