Uses of Class
edu.umd.cs.findbugs.FieldAnnotation

Packages that use FieldAnnotation
edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany. 
edu.umd.cs.findbugs.model Eventually, all model classes (BugInstance, BugCollection, etc.) should go in this package. 
 

Uses of FieldAnnotation in edu.umd.cs.findbugs
 

Methods in edu.umd.cs.findbugs that return FieldAnnotation
static FieldAnnotation FieldAnnotation.fromBCELField(java.lang.String className, org.apache.bcel.classfile.Field field)
          Factory method.
static FieldAnnotation FieldAnnotation.fromReferencedField(DismantleBytecode visitor)
          Factory method.
static FieldAnnotation FieldAnnotation.fromVisitedField(PreorderVisitor visitor)
          Factory method.
 FieldAnnotation OpcodeStack.Item.getField()
           
 FieldAnnotation BugInstance.getPrimaryField()
          Get the primary method annotation, which indicates where the bug occurs.
static FieldAnnotation FieldAnnotation.isRead(org.apache.bcel.generic.Instruction ins, org.apache.bcel.generic.ConstantPoolGen cpg)
          Is the given instruction a read of a field?
static FieldAnnotation FieldAnnotation.isWrite(org.apache.bcel.generic.Instruction ins, org.apache.bcel.generic.ConstantPoolGen cpg)
          Is the instruction a write of a field?
 

Methods in edu.umd.cs.findbugs with parameters of type FieldAnnotation
 BugInstance BugInstance.addField(FieldAnnotation fieldAnnotation)
          Add a field annotation
 BugInstance BugInstance.addReferencedField(FieldAnnotation fa)
          Add a field annotation for the field referenced by the FieldAnnotation parameter
 void BugAnnotationVisitor.visitFieldAnnotation(FieldAnnotation fieldAnnotation)
           
 

Constructors in edu.umd.cs.findbugs with parameters of type FieldAnnotation
FieldWarningSuppressor(java.lang.String bugPattern, ClassAnnotation clazz, FieldAnnotation field)
           
OpcodeStack.Item(java.lang.String s, FieldAnnotation f)
           
OpcodeStack.Item(java.lang.String s, FieldAnnotation f, int reg)
           
 

Uses of FieldAnnotation in edu.umd.cs.findbugs.model
 

Methods in edu.umd.cs.findbugs.model that return FieldAnnotation
static FieldAnnotation ClassNameRewriterUtil.convertFieldAnnotation(ClassNameRewriter classNameRewriter, FieldAnnotation annotation)
          Rewrite a FieldAnnotation to update the class name and field signature, if needed.
 

Methods in edu.umd.cs.findbugs.model with parameters of type FieldAnnotation
static FieldAnnotation ClassNameRewriterUtil.convertFieldAnnotation(ClassNameRewriter classNameRewriter, FieldAnnotation annotation)
          Rewrite a FieldAnnotation to update the class name and field signature, if needed.