Package javassist.bytecode
Class BootstrapMethodsAttribute
- java.lang.Object
-
- javassist.bytecode.AttributeInfo
-
- javassist.bytecode.BootstrapMethodsAttribute
-
public class BootstrapMethodsAttribute extends AttributeInfo
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBootstrapMethodsAttribute.BootstrapMethodAn element ofbootstrap_methods.
-
Constructor Summary
Constructors Constructor Description BootstrapMethodsAttribute(ConstPool cp, BootstrapMethodsAttribute.BootstrapMethod[] methods)Constructs a BootstrapMethods attribute.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeInfocopy(ConstPool newCp, Map<String,String> classnames)Makes a copy.BootstrapMethodsAttribute.BootstrapMethod[]getMethods()Obtainsbootstrap_methodsin this attribute.-
Methods inherited from class javassist.bytecode.AttributeInfo
get, getConstPool, getName, length, set
-
-
-
-
Field Detail
-
tag
public static final String tag
The name of this attribute"BootstrapMethods".- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BootstrapMethodsAttribute
public BootstrapMethodsAttribute(ConstPool cp, BootstrapMethodsAttribute.BootstrapMethod[] methods)
Constructs a BootstrapMethods attribute.- Parameters:
cp- a constant pool table.methods- the contents.
-
-
Method Detail
-
getMethods
public BootstrapMethodsAttribute.BootstrapMethod[] getMethods()
Obtainsbootstrap_methodsin this attribute.- Returns:
- an array of
BootstrapMethod. Since it is a fresh copy, modifying the returned array does not affect the original contents of this attribute.
-
copy
public AttributeInfo copy(ConstPool newCp, Map<String,String> classnames)
Makes a copy. Class names are replaced according to the givenMapobject.- Overrides:
copyin classAttributeInfo- Parameters:
newCp- the constant pool table used by the new copy.classnames- pairs of replaced and substituted class names.
-
-