Uses of Class
org.fife.rsta.ac.java.classreader.attributes.AttributeInfo
-
Packages that use AttributeInfo Package Description org.fife.rsta.ac.java.classreader Classes that help you parse and model a class file's contents.org.fife.rsta.ac.java.classreader.attributes Attributes in a class file. -
-
Uses of AttributeInfo in org.fife.rsta.ac.java.classreader
Fields in org.fife.rsta.ac.java.classreader declared as AttributeInfo Modifier and Type Field Description private AttributeInfo[]ClassFile. attributesAttributes of this class or interface.Fields in org.fife.rsta.ac.java.classreader with type parameters of type AttributeInfo Modifier and Type Field Description private java.util.List<AttributeInfo>FieldInfo. attributesAn array of attributes of this field.private java.util.List<AttributeInfo>MethodInfo. attributesAll attributes of this method that aren't explicitly covered by the private membersMethodInfo.signatureAttrandMethodInfo.codeAttr.Methods in org.fife.rsta.ac.java.classreader that return AttributeInfo Modifier and Type Method Description AttributeInfoClassFile. getAttribute(int index)Returns the specified attribute of this class file.AttributeInfoFieldInfo. getAttribute(int index)Returns the specified attribute.AttributeInfoMethodInfo. getAttribute(int index)Returns the specified attribute.private AttributeInfoClassFile. readAttribute(java.io.DataInputStream in)Reads a single attribute of this class file.private AttributeInfoFieldInfo. readAttribute(java.io.DataInputStream in)Reads an attribute for this field from an input stream.protected AttributeInfoMemberInfo. readAttribute(java.io.DataInputStream in, java.lang.String attrName, int attrLength)Reads attributes common to all members.private AttributeInfoMethodInfo. readAttribute(java.io.DataInputStream in)Reads an attribute for this method from the specified input stream.Methods in org.fife.rsta.ac.java.classreader with parameters of type AttributeInfo Modifier and Type Method Description voidFieldInfo. addAttribute(AttributeInfo info)Adds the specified attribute to this field.private voidMethodInfo. addAttribute(AttributeInfo info)Adds the specified attribute to this field. -
Uses of AttributeInfo in org.fife.rsta.ac.java.classreader.attributes
Subclasses of AttributeInfo in org.fife.rsta.ac.java.classreader.attributes Modifier and Type Class Description classCodeA variable-length attribute used in the attributes table ofMethodInfostructures.classConstantValueThe "ConstantValue" attribute, as defined by 4.7.2 of the JVM specification.classExceptionsImplementation of the "Exceptions" attribute found inMethodInfos.classSignatureThe Signature attribute is an optional fixed-length attribute in the attribute table of the ClassFile, field_info and method_info structures.classSourceFileTheSourceFileattribute, an optional fixed-length attribute in the attributes table of aClassFile.classUnsupportedAttributeAn attribute that is unknown/unsupported by this decompiler.Fields in org.fife.rsta.ac.java.classreader.attributes with type parameters of type AttributeInfo Modifier and Type Field Description private java.util.List<AttributeInfo>Code. attributesAttributes of thisCodeattribute.Methods in org.fife.rsta.ac.java.classreader.attributes that return AttributeInfo Modifier and Type Method Description private AttributeInfoCode. readAttribute(java.io.DataInputStream in)Reads an attribute for thisCodeattribute from an input stream.
-