Uses of Class
org.codehaus.janino.util.ClassFile.AttributeInfo
-
Packages that use ClassFile.AttributeInfo Package Description org.codehaus.janino.util Application-independent helper classes. -
-
Uses of ClassFile.AttributeInfo in org.codehaus.janino.util
Subclasses of ClassFile.AttributeInfo in org.codehaus.janino.util Modifier and Type Class Description static classClassFile.AnnotationDefaultAttributeRepresentation of anAnnotationDefaultattribute (see JVMS8 4.7.22).static classClassFile.AnnotationsAttributeRepresentation of aRuntime[In]visibleAnnotationsattribute (see JVMS8 4.7.16/17).static classClassFile.CodeAttributeRepresentation of an unmodifiableCodeattribute, as read from a class file.static classClassFile.ConstantValueAttributeRepresentation of aConstantValueattribute (see JVMS 4.7.2).static classClassFile.DeprecatedAttributeRepresentation of aDeprecatedattribute (see JVMS 4.7.10).static classClassFile.ExceptionsAttributeRepresentation of anExceptionsattribute (see JVMS 4.7.4).static classClassFile.InnerClassesAttributeRepresentation of anInnerClassesattribute (see JVMS 4.7.5).static classClassFile.LineNumberTableAttributeRepresentation of aLineNumberTableattribute (see JVMS 4.7.8).static classClassFile.LocalVariableTableAttributeRepresentation of aLocalVariableTableattribute (see JVMS 4.7.9).static classClassFile.SignatureAttributeRepresentation of aSignatureattribute (see JVMS 4.7.9).static classClassFile.SourceFileAttributeRepresentation of aSourceFileattribute (see JVMS 4.7.7).static classClassFile.StackMapTableAttributeRepresentation of an unmodifiableStackMapTableattribute, as read from a class file.static classClassFile.SyntheticAttributeRepresentation of aSyntheticattribute (see JVMS 4.7.6).Fields in org.codehaus.janino.util declared as ClassFile.AttributeInfo Modifier and Type Field Description private ClassFile.AttributeInfo[]ClassFile.CodeAttribute. attributesFields in org.codehaus.janino.util with type parameters of type ClassFile.AttributeInfo Modifier and Type Field Description private java.util.List<ClassFile.AttributeInfo>ClassFile. attributesTheClassFile.AttributeInfos of the attributes of this class or interface.private java.util.List<ClassFile.AttributeInfo>ClassFile.FieldInfo. attributesprivate java.util.List<ClassFile.AttributeInfo>ClassFile.MethodInfo. attributesMethods in org.codehaus.janino.util that return ClassFile.AttributeInfo Modifier and Type Method Description private ClassFile.AttributeInfoClassFile. findAttribute(java.util.List<ClassFile.AttributeInfo> attributes, java.lang.String attributeName)Finds the named attribute in the attributes.ClassFile.AttributeInfo[]ClassFile.FieldInfo. getAttributes()ClassFile.AttributeInfo[]ClassFile.MethodInfo. getAttributes()private ClassFile.AttributeInfoClassFile. loadAttribute(java.io.DataInputStream dis)Loads one class file attribute.private static ClassFile.AttributeInfoClassFile.AnnotationDefaultAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.AnnotationsAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.CodeAttribute. loadBody(short attributeNameIndex, ClassFile classFile, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.ConstantValueAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.DeprecatedAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.ExceptionsAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.InnerClassesAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.LineNumberTableAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.LocalVariableTableAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.SignatureAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.SourceFileAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)private static ClassFile.AttributeInfoClassFile.StackMapTableAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis, ClassFile classFile)private static ClassFile.AttributeInfoClassFile.SyntheticAttribute. loadBody(short attributeNameIndex, java.io.DataInputStream dis)Methods in org.codehaus.janino.util that return types with arguments of type ClassFile.AttributeInfo Modifier and Type Method Description private java.util.List<ClassFile.AttributeInfo>ClassFile. loadAttributes(java.io.DataInputStream dis)u2 attributes_count, attributes[attributes_count]Methods in org.codehaus.janino.util with parameters of type ClassFile.AttributeInfo Modifier and Type Method Description voidClassFile.FieldInfo. addAttribute(ClassFile.AttributeInfo attribute)Adds the attribute to this field.voidClassFile.MethodInfo. addAttribute(ClassFile.AttributeInfo attribute)Adds the attribute to this method.Method parameters in org.codehaus.janino.util with type arguments of type ClassFile.AttributeInfo Modifier and Type Method Description private voidClassFile. addAnnotationsAttributeEntry(boolean runtimeVisible, java.lang.String fieldDescriptor, java.util.Map<java.lang.Short,ClassFile.ElementValue> elementValuePairs, java.util.List<ClassFile.AttributeInfo> target)Adds aRuntime[In]visibleAnnotationsattribute to the target (if it does not yet exist) and adds an entry to it.private ClassFile.AttributeInfoClassFile. findAttribute(java.util.List<ClassFile.AttributeInfo> attributes, java.lang.String attributeName)Finds the named attribute in the attributes.private ClassFile.AnnotationsAttributeClassFile. getAnnotationsAttribute(boolean runtimeVisible, java.util.List<ClassFile.AttributeInfo> attributes)Finds theRuntime[In]visibleAnnotationsattribute in the attributes.private static voidClassFile. storeAttributes(java.io.DataOutputStream dos, java.util.List<ClassFile.AttributeInfo> attributeInfos)u2 attributes_count, attributes[attributes_count]Constructors in org.codehaus.janino.util with parameters of type ClassFile.AttributeInfo Constructor Description CodeAttribute(short attributeNameIndex, short maxStack, short maxLocals, byte[] code, ClassFile.CodeAttribute.ExceptionTableEntry[] exceptionTableEntries, ClassFile.AttributeInfo[] attributes)Constructor parameters in org.codehaus.janino.util with type arguments of type ClassFile.AttributeInfo Constructor Description FieldInfo(short accessFlags, short nameIndex, short descriptorIndex, java.util.List<ClassFile.AttributeInfo> attributes)MethodInfo(short accessFlags, short nameIndex, short descriptorIndex, java.util.List<ClassFile.AttributeInfo> attributes)Initializes the "method_info" structure.
-