Uses of Interface
org.eclipse.jdt.core.util.IClassFileAttribute

Packages that use IClassFileAttribute
org.eclipse.jdt.core.util   
org.eclipse.jdt.internal.core.util   
 

Uses of IClassFileAttribute in org.eclipse.jdt.core.util
 

Subinterfaces of IClassFileAttribute in org.eclipse.jdt.core.util
 interface IAnnotationDefaultAttribute
          Description of a annotation default attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IBootstrapMethodsAttribute
          Description of a bootstrap methods attribute as described in the JVM specifications.
 interface ICodeAttribute
          Description of a code attribute as described in the JVM specifications.
 interface IConstantValueAttribute
          Description of a constant value attribute as described in the JVM specifications.
 interface IEnclosingMethodAttribute
          Description of an enclosing method attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IExceptionAttribute
          Description of a constant value attribute as described in the JVM specifications.
 interface IInnerClassesAttribute
          Description of a inner class attribute as described in the JVM specifications.
 interface ILineNumberAttribute
          Description of a line number attribute as described in the JVM specifications.
 interface ILocalVariableAttribute
          Description of a local variable attribute as described in the JVM specifications.
 interface ILocalVariableTypeTableAttribute
          Description of a local variable type attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IRuntimeInvisibleAnnotationsAttribute
          Description of a runtime invisible annotations attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IRuntimeInvisibleParameterAnnotationsAttribute
          Description of a runtime invisible parameter annotations attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IRuntimeVisibleAnnotationsAttribute
          Description of a runtime visible annotations attribute as described in the JVM specifications (added in J2SE 1.5).
 interface IRuntimeVisibleParameterAnnotationsAttribute
          Description of a runtime visible parameter annotations attribute as described in the JVM specification (added in J2SE 1.5).
 interface ISignatureAttribute
          Description of a signature attribute as described in the JVM specifications (added in J2SE 1.5).
 interface ISourceAttribute
          Description of a source attribute as described in the JVM specifications.
 interface IStackMapAttribute
          This class represents a stack map attribute.
 interface IStackMapTableAttribute
          This class represents a stack map table attribute.
 

Methods in org.eclipse.jdt.core.util that return IClassFileAttribute
 IClassFileAttribute[] ICodeAttribute.getAttributes()
          Answer back the collection of all attributes of the field info.
 IClassFileAttribute[] IFieldInfo.getAttributes()
          Answer back the collection of all attributes of the field info.
 IClassFileAttribute[] IClassFileReader.getAttributes()
          Answer back the collection of all attributes of the field info.
 IClassFileAttribute[] IMethodInfo.getAttributes()
          Answer back the collection of all attributes of the method info.
 

Uses of IClassFileAttribute in org.eclipse.jdt.internal.core.util
 

Classes in org.eclipse.jdt.internal.core.util that implement IClassFileAttribute
 class AnnotationDefaultAttribute
          Default implementation of AnnotationDefaultAttribute.
 class BootstrapMethodsAttribute
          Default implementation of IBootstrapMethodsAttribute.
 class ClassFileAttribute
          Default implementation of IClassFileAttribute
 class CodeAttribute
          Default implementation of ICodeAttribute.
 class ConstantValueAttribute
          Default implementation of IConstantValueAttribute.
 class EnclosingMethodAttribute
          Default implementation of EnclosingMethodAttribute.
 class ExceptionAttribute
          Default implementation of IExceptionAttribute.
 class InnerClassesAttribute
          Default implementation of IInnerClassesAttribute.
 class LineNumberAttribute
          Default implementation of ILineNumberAttribute.
 class LocalVariableAttribute
          Default implementation of ILocalVariableAttribute.
 class LocalVariableTypeAttribute
          Default implementation of ILocalVariableTypeAttribute.
 class RuntimeInvisibleAnnotationsAttribute
          Default implementation of IRuntimeInvisibleAnnotations
 class RuntimeInvisibleParameterAnnotationsAttribute
          Default implementation of IRuntimeInvisibleParameterAnnotations
 class RuntimeVisibleAnnotationsAttribute
          Default implementation of IRuntimeVisibleAnnotations
 class RuntimeVisibleParameterAnnotationsAttribute
          Default implementation of IRuntimeVisibleAnnotations
 class SignatureAttribute
           
 class SourceFileAttribute
          Default implementation of ISourceAttribute
 class StackMapAttribute
          Default implementation of IStackMapAttribute.
 class StackMapTableAttribute
          Default implementation of IStackMapTableAttribute.
 

Fields in org.eclipse.jdt.internal.core.util declared as IClassFileAttribute
static IClassFileAttribute[] ClassFileAttribute.NO_ATTRIBUTES
           
 

Methods in org.eclipse.jdt.internal.core.util that return IClassFileAttribute
static IClassFileAttribute Util.getAttribute(IClassFileReader classFileReader, char[] attributeName)
           
static IClassFileAttribute Util.getAttribute(ICodeAttribute codeAttribute, char[] attributeName)
           
static IClassFileAttribute Util.getAttribute(IFieldInfo fieldInfo, char[] attributeName)
           
static IClassFileAttribute Util.getAttribute(IMethodInfo methodInfo, char[] attributeName)
           
 IClassFileAttribute[] MethodInfo.getAttributes()
           
 IClassFileAttribute[] FieldInfo.getAttributes()
           
 IClassFileAttribute[] ClassFileReader.getAttributes()
           
 IClassFileAttribute[] CodeAttribute.getAttributes()