Package serp.bytecode
Class State
java.lang.Object
serp.bytecode.State
- Direct Known Subclasses:
ArrayState
,ObjectState
,PrimitiveState
The State type is extended by various concrete types to change
the behavior of a
BCClass
. All methods in this base
implementation throw an UnsupportedOperationException
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
Return the access flags of the bytecode class.Return theAttribute
s of this class, or empty list if none.Return the name of the component type of this array, or null if not an array.Return theBCField
s of this class, or empty list if none.int
getIndex()
Return theConstantPool
index of theClassEntry
for this class, or 0 if none.Return theConstantPool
indexes of theClassEntry
s for the indexes of this class, or empty list if none.int
getMagic()
Return the magic number of the bytecode class.int
Return the major number of the bytecode class.Return theBCMethod
s of this class, or empty list if none.int
Return the minor number of the bytecode class.getName()
Return the name of the class.getPool()
Return the constant pool of the class.int
Return theConstantPool
index of theClassEntry
for the superclass of this class, or 0 if none.Return the name of the superclass.boolean
isArray()
Return true if this class is an array.boolean
Return true if this class is a primitive.void
setAccessFlags
(int access) Set the access flags of the bytecode class.void
setIndex
(int index) Set theConstantPool
index of theClassEntry
for this class.void
setMagic
(int magic) Set the magic number of the bytecode class.void
setMajorVersion
(int major) Set the major version of the bytecode class.void
setMinorVersion
(int minor) Set the minor version of the bytecode class.void
setSuperclassIndex
(int index) Set theConstantPool
index of theClassEntry
for the superclass of this class.
-
Field Details
-
INVALID
A singleton instance of this type that can be used to make a class invalid.
-
-
Constructor Details
-
State
State()
-
-
Method Details
-
getMagic
public int getMagic()Return the magic number of the bytecode class. -
setMagic
public void setMagic(int magic) Set the magic number of the bytecode class. -
getMajorVersion
public int getMajorVersion()Return the major number of the bytecode class. -
setMajorVersion
public void setMajorVersion(int major) Set the major version of the bytecode class. -
getMinorVersion
public int getMinorVersion()Return the minor number of the bytecode class. -
setMinorVersion
public void setMinorVersion(int minor) Set the minor version of the bytecode class. -
getAccessFlags
public int getAccessFlags()Return the access flags of the bytecode class. -
setAccessFlags
public void setAccessFlags(int access) Set the access flags of the bytecode class. -
getIndex
public int getIndex()Return theConstantPool
index of theClassEntry
for this class, or 0 if none. -
setIndex
public void setIndex(int index) Set theConstantPool
index of theClassEntry
for this class. -
getSuperclassIndex
public int getSuperclassIndex()Return theConstantPool
index of theClassEntry
for the superclass of this class, or 0 if none. -
setSuperclassIndex
public void setSuperclassIndex(int index) Set theConstantPool
index of theClassEntry
for the superclass of this class. ThrowsUnsupportedOperationException
by default. -
getInterfacesHolder
Return theConstantPool
indexes of theClassEntry
s for the indexes of this class, or empty list if none. If the state does not support changing the interfaces, the returned list should be immutable. -
getFieldsHolder
Return theBCField
s of this class, or empty list if none. If the state does not support changing the fields, the returned list should be immutable. -
getMethodsHolder
Return theBCMethod
s of this class, or empty list if none. If the state does not support changing the methods, the returned list should be immutable. -
getAttributesHolder
Return theAttribute
s of this class, or empty list if none. If the state does not support changing the attributes, the returned list should be immutable. -
getPool
Return the constant pool of the class. -
getName
Return the name of the class. The name should be in a form suitable for aClass.forName(java.lang.String)
call. -
getSuperclassName
Return the name of the superclass. The name should be in a form suitable for aClass.forName(java.lang.String)
call, or null if none. -
getComponentName
Return the name of the component type of this array, or null if not an array. The name should be in a form suitable for aClass.forName(java.lang.String)
call. -
isPrimitive
public boolean isPrimitive()Return true if this class is a primitive. -
isArray
public boolean isArray()Return true if this class is an array.
-