Uses of Class
serp.bytecode.Attribute
Packages that use Attribute
-
Uses of Attribute in serp.bytecode
Subclasses of Attribute in serp.bytecodeModifier and TypeClassDescriptionclassJava annotation data.classclassRepresentation of a code block of a class.classA constant value for a member field.classAttribute signifying that a method or class is deprecated.classAttribute declaring the checked exceptions a method can throw.classAttribute describing all referenced classes that are not package members.classCode blocks compiled from source have line number tables mapping opcodes to source lines.classCode blocks compiled from source have local tables mapping locals used in opcodes to their names and descriptions.classCode blocks compiled from source have local variable tables mapping locals used in opcodes to their names and descriptions.classCode blocks compiled from source have local variable type tables mapping generics-using locals used in opcodes to their names and signatures.classAttribute naming the source file for this class.classAttribute marking a member as synthetic, or not present in the class source code.classAn unrecognized attribute; class files are allowed to contain attributes that are not recognized, and the JVM must ignore them.Methods in serp.bytecode that return AttributeModifier and TypeMethodDescriptionAttributes.addAttribute(String name) Add an attribute of the given type.Attributes.addAttribute(Attribute attr) Import an attribute from another entity, or make a copy of one on this entity.Attributes.getAttribute(String name) Return the attribute with the given name.Attributes.getAttributes()Return all the attributes owned by this entity.Attributes.getAttributes(String name) Return all attributes with the given name.Methods in serp.bytecode with parameters of type AttributeModifier and TypeMethodDescriptionAttributes.addAttribute(Attribute attr) Import an attribute from another entity, or make a copy of one on this entity.booleanAttributes.removeAttribute(Attribute attribute) Remove the given attribute.voidAttributes.setAttributes(Attribute[] attrs) Set the attributes for this entity; this method is useful for importing all attributes from another entity. -
Uses of Attribute in serp.bytecode.visitor
Methods in serp.bytecode.visitor with parameters of type AttributeModifier and TypeMethodDescriptionvoidBCVisitor.enterAttribute(Attribute obj) voidPrettyPrintVisitor.enterAttribute(Attribute obj) voidBCVisitor.exitAttribute(Attribute obj) voidPrettyPrintVisitor.exitAttribute(Attribute obj)