Uses of Interface
aQute.bnd.classfile.Attribute
-
Packages that use Attribute Package Description aQute.bnd.classfile This package provides an object model and parser for Java class files.aQute.bnd.classfile.builder -
-
Uses of Attribute in aQute.bnd.classfile
Fields in aQute.bnd.classfile declared as Attribute Modifier and Type Field Description Attribute[]CodeAttribute. attributesAttribute[]ElementInfo. attributesAttribute[]RecordAttribute.RecordComponent. attributesMethods in aQute.bnd.classfile that return Attribute Modifier and Type Method Description static AttributeAttribute. readAttribute(java.io.DataInput in, ConstantPool constant_pool)static Attribute[]Attribute. readAttributes(java.io.DataInput in, ConstantPool constant_pool)Methods in aQute.bnd.classfile with parameters of type Attribute Modifier and Type Method Description static intAttribute. attributes_length(Attribute[] attributes)MMemberInfo.Constructor. init(int access_flags, java.lang.String name, java.lang.String descriptor, Attribute[] attributes)static voidAttribute. writeAttributes(java.io.DataOutput out, ConstantPool constant_pool, Attribute[] attributes)Constructors in aQute.bnd.classfile with parameters of type Attribute Constructor Description ClassFile(int minor_version, int major_version, ConstantPool constant_pool, int access_flags, java.lang.String this_class, java.lang.String super_class, java.lang.String[] interfaces, FieldInfo[] fields, MethodInfo[] methods, Attribute[] attributes)CodeAttribute(int max_stack, int max_locals, java.nio.ByteBuffer code, CodeAttribute.ExceptionHandler[] exception_table, Attribute[] attributes)ElementInfo(int access, Attribute[] attributes)FieldInfo(int access_flags, java.lang.String name, java.lang.String descriptor, Attribute[] attributes)MemberInfo(int access, java.lang.String name, java.lang.String descriptor, Attribute[] attributes)MethodInfo(int access_flags, java.lang.String name, java.lang.String descriptor, Attribute[] attributes)RecordComponent(java.lang.String name, java.lang.String descriptor, Attribute[] attributes) -
Uses of Attribute in aQute.bnd.classfile.builder
Methods in aQute.bnd.classfile.builder that return types with arguments of type Attribute Modifier and Type Method Description java.util.List<Attribute>ClassFileBuilder. attributes()Methods in aQute.bnd.classfile.builder with parameters of type Attribute Modifier and Type Method Description ClassFileBuilderClassFileBuilder. attributes(Attribute attribute)ClassFileBuilderClassFileBuilder. attributes(Attribute[] attributes)ClassFileBuilderClassFileBuilder. attributes(Attribute attribute, Attribute... attributes)Method parameters in aQute.bnd.classfile.builder with type arguments of type Attribute Modifier and Type Method Description ClassFileBuilderClassFileBuilder. attributes(java.util.Collection<Attribute> attributes)
-