Uses of Class
org.codehaus.janino.util.ClassFile.AttributeInfo
-
Packages that use ClassFile.AttributeInfo Package Description org.codehaus.janino The core of the Janino Java compiler.org.codehaus.janino.util Application-independent helper classes. -
-
Uses of ClassFile.AttributeInfo in org.codehaus.janino
Methods in org.codehaus.janino that return ClassFile.AttributeInfo Modifier and Type Method Description protected ClassFile.AttributeInfo
CodeContext. storeLocalVariableTable(DataOutputStream dos, short localVariableTableAttributeNameIndex)
-
Uses of ClassFile.AttributeInfo in org.codehaus.janino.util
Subclasses of ClassFile.AttributeInfo in org.codehaus.janino.util Modifier and Type Class Description static class
ClassFile.AnnotationDefaultAttribute
Representation of anAnnotationDefault
attribute (see JVMS8 4.7.22).static class
ClassFile.AnnotationsAttribute
Representation of aRuntime[In]visibleAnnotations
attribute (see JVMS8 4.7.16/17).static class
ClassFile.CodeAttribute
Representation of an unmodifiableCode
attribute, as read from a class file.static class
ClassFile.ConstantValueAttribute
Representation of aConstantValue
attribute (see JVMS 4.7.2).static class
ClassFile.DeprecatedAttribute
Representation of aDeprecated
attribute (see JVMS 4.7.10).static class
ClassFile.ExceptionsAttribute
Representation of anExceptions
attribute (see JVMS 4.7.4).static class
ClassFile.InnerClassesAttribute
Representation of anInnerClasses
attribute (see JVMS 4.7.5).static class
ClassFile.LineNumberTableAttribute
Representation of aLineNumberTable
attribute (see JVMS 4.7.8).static class
ClassFile.LocalVariableTableAttribute
Representation of aLocalVariableTable
attribute (see JVMS 4.7.9).static class
ClassFile.SourceFileAttribute
Representation of aSourceFile
attribute (see JVMS 4.7.7).static class
ClassFile.StackMapTableAttribute
Representation of an unmodifiableStackMapTable
attribute, as read from a class file.static class
ClassFile.SyntheticAttribute
Representation of aSynthetic
attribute (see JVMS 4.7.6).Methods in org.codehaus.janino.util that return ClassFile.AttributeInfo Modifier and Type Method Description ClassFile.AttributeInfo[]
ClassFile.FieldInfo. getAttributes()
ClassFile.AttributeInfo[]
ClassFile.MethodInfo. getAttributes()
Methods in org.codehaus.janino.util with parameters of type ClassFile.AttributeInfo Modifier and Type Method Description void
ClassFile.FieldInfo. addAttribute(ClassFile.AttributeInfo attribute)
Adds the attribute to this field.void
ClassFile.MethodInfo. addAttribute(ClassFile.AttributeInfo attribute)
Adds the attribute to this method.Constructor parameters in org.codehaus.janino.util with type arguments of type ClassFile.AttributeInfo Constructor Description FieldInfo(short accessFlags, short nameIndex, short descriptorIndex, List<ClassFile.AttributeInfo> attributes)
MethodInfo(short accessFlags, short nameIndex, short descriptorIndex, List<ClassFile.AttributeInfo> attributes)
Initializes the "method_info" structure.
-