Package javassist.bytecode
Class NestHostAttribute
- java.lang.Object
-
- javassist.bytecode.AttributeInfo
-
- javassist.bytecode.NestHostAttribute
-
public class NestHostAttribute extends AttributeInfo
NestHost_attribute. It was introduced by JEP-181. See JVMS 4.7.28 for the specification.- Since:
- 3.24
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeInfocopy(ConstPool newCp, Map<String,String> classnames)Makes a copy.inthostClassIndex()Returnshost_class_index.-
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"NestHost".- See Also:
- Constant Field Values
-
-
Method Detail
-
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.
-
hostClassIndex
public int hostClassIndex()
Returnshost_class_index. The constant pool entry at this entry is aCONSTANT_Class_infostructure.- Returns:
- the value of
host_class_index.
-
-