Package serp.bytecode.lowlevel
Class InterfaceMethodEntry
- java.lang.Object
-
- serp.bytecode.lowlevel.Entry
-
- serp.bytecode.lowlevel.ComplexEntry
-
- serp.bytecode.lowlevel.InterfaceMethodEntry
-
- All Implemented Interfaces:
VisitAcceptor
public class InterfaceMethodEntry extends ComplexEntry
A reference to an interface method.
-
-
Field Summary
-
Fields inherited from class serp.bytecode.lowlevel.Entry
CLASS, DOUBLE, FIELD, FLOAT, INT, INTERFACEMETHOD, INVOKEDYNAMIC, LONG, METHOD, METHODHANDLE, METHODTYPE, NAMEANDTYPE, STRING, UTF8
-
-
Constructor Summary
Constructors Constructor Description InterfaceMethodEntry()
Default constructor.InterfaceMethodEntry(int classIndex, int nameAndTypeIndex)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptVisit(BCVisitor visit)
Accept a visit from aBCVisitor
, calling the appropriate methods to notify the visitor that it has entered this entity, and to provide it with the proper callbacks for each sub-entity owned by this one.int
getType()
Return the type code for this entry type.-
Methods inherited from class serp.bytecode.lowlevel.ComplexEntry
getClassEntry, getClassIndex, getNameAndTypeEntry, getNameAndTypeIndex, readData, setClassIndex, setNameAndTypeIndex, writeData
-
-
-
-
Constructor Detail
-
InterfaceMethodEntry
public InterfaceMethodEntry()
Default constructor.
-
InterfaceMethodEntry
public InterfaceMethodEntry(int classIndex, int nameAndTypeIndex)
Constructor.- See Also:
ComplexEntry(int,int)
-
-
Method Detail
-
getType
public int getType()
Description copied from class:Entry
Return the type code for this entry type.
-
acceptVisit
public void acceptVisit(BCVisitor visit)
Description copied from interface:VisitAcceptor
Accept a visit from aBCVisitor
, calling the appropriate methods to notify the visitor that it has entered this entity, and to provide it with the proper callbacks for each sub-entity owned by this one.
-
-