Uses of Class
javassist.bytecode.AttributeInfo
-
Packages that use AttributeInfo Package Description javassist.bytecode Bytecode-level API. -
-
Uses of AttributeInfo in javassist.bytecode
Subclasses of AttributeInfo in javassist.bytecode Modifier and Type Class Description classAnnotationDefaultAttributeA class representingAnnotationDefault_attribute.classAnnotationsAttributeA class representingRuntimeVisibleAnnotations_attributeandRuntimeInvisibleAnnotations_attribute.classBootstrapMethodsAttributeclassCodeAttributeCode_attribute.classConstantAttributeConstantValue_attribute.classDeprecatedAttributeDeprecated_attribute.classEnclosingMethodAttributeEnclosingMethod_attribute.classExceptionsAttributeExceptions_attribute.classInnerClassesAttributeInnerClasses_attribute.classLineNumberAttributeLineNumberTable_attribute.classLocalVariableAttributeLocalVariableTable_attribute.classLocalVariableTypeAttributeLocalVariableTypeTable_attribute.classMethodParametersAttributeMethodParameters_attribute.classNestHostAttributeNestHost_attribute.classNestMembersAttributeNestMembers_attribute.classParameterAnnotationsAttributeA class representingRuntimeVisibleAnnotations_attributeandRuntimeInvisibleAnnotations_attribute.classSignatureAttributeSignature_attribute.classSourceFileAttributeSourceFile_attribute.classStackMapAnotherstack_mapattribute defined in CLDC 1.1 for J2ME.classStackMapTablestack_mapattribute.classSyntheticAttributeSynthetic_attribute.classTypeAnnotationsAttributeA class representingRuntimeVisibleTypeAnnotationsattribute andRuntimeInvisibleTypeAnnotationsattribute.Methods in javassist.bytecode that return AttributeInfo Modifier and Type Method Description AttributeInfoAnnotationDefaultAttribute. copy(ConstPool newCp, Map<String,String> classnames)Copies this attribute and returns a new copy.AttributeInfoAnnotationsAttribute. copy(ConstPool newCp, Map<String,String> classnames)Copies this attribute and returns a new copy.AttributeInfoAttributeInfo. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoBootstrapMethodsAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoCodeAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoConstantAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoDeprecatedAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoEnclosingMethodAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoExceptionsAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoInnerClassesAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoLineNumberAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoLocalVariableAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoMethodParametersAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoNestHostAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoNestMembersAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoParameterAnnotationsAttribute. copy(ConstPool newCp, Map<String,String> classnames)Copies this attribute and returns a new copy.AttributeInfoSignatureAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoSourceFileAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoStackMap. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoStackMapTable. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoSyntheticAttribute. copy(ConstPool newCp, Map<String,String> classnames)Makes a copy.AttributeInfoTypeAnnotationsAttribute. copy(ConstPool newCp, Map<String,String> classnames)Copies this attribute and returns a new copy.AttributeInfoClassFile. getAttribute(String name)Returns the attribute with the specified name.AttributeInfoCodeAttribute. getAttribute(String name)Returns the attribute with the specified name.AttributeInfoFieldInfo. getAttribute(String name)Returns the attribute with the specified name.AttributeInfoMethodInfo. getAttribute(String name)Returns the attribute with the specified name.AttributeInfoClassFile. removeAttribute(String name)Removes an attribute with the specified name.AttributeInfoFieldInfo. removeAttribute(String name)Removes an attribute with the specified name.AttributeInfoMethodInfo. removeAttribute(String name)Removes an attribute with the specified name.Methods in javassist.bytecode that return types with arguments of type AttributeInfo Modifier and Type Method Description List<AttributeInfo>ClassFile. getAttributes()Returns all the attributes.List<AttributeInfo>CodeAttribute. getAttributes()Returnsattributes[].List<AttributeInfo>FieldInfo. getAttributes()Returns all the attributes.List<AttributeInfo>MethodInfo. getAttributes()Returns all the attributes.Methods in javassist.bytecode with parameters of type AttributeInfo Modifier and Type Method Description voidClassFile. addAttribute(AttributeInfo info)Appends an attribute.voidFieldInfo. addAttribute(AttributeInfo info)Appends an attribute.voidMethodInfo. addAttribute(AttributeInfo info)Appends an attribute.
-