Uses of Interface
edu.umd.cs.findbugs.ba.XField
Packages that use XField
Package
Description
Main package for the FindBugs application - contains the
engine class (FindBugs), the object model classes for bug instances
(BugInstance, BugAnnotation), and other miscellany.
Classes of objects that are the result of executing an analysis
engine on a class or method. The classes in this particular package are
those that are independent of any particular bytecode-analysis framework
(e.g., BCEL or ASM). Two important classes in this package are
ClassData, which represents the raw data of a class, and ClassInfo,
which represents symbolic information parsed from the class data.
-
Uses of XField in edu.umd.cs.findbugs
Methods in edu.umd.cs.findbugs that return XFieldMethods in edu.umd.cs.findbugs with parameters of type XFieldModifier and TypeMethodDescriptionAdd a field annotation for an XField.BugInstance.addOptionalField(XField xfield) Add a field annotation for an XField.static FieldAnnotationFieldAnnotation.fromXField(XField fieldDescriptor) voidOpcodeStack.Item.setLoadedFromField(XField f, int fieldLoadedFromRegister) -
Uses of XField in edu.umd.cs.findbugs.ba
Classes in edu.umd.cs.findbugs.ba that implement XFieldMethods in edu.umd.cs.findbugs.ba that return XFieldModifier and TypeMethodDescriptionstatic XFieldXFactory.createReferencedXField(DismantleBytecode visitor) static XFieldXFactory.createXField(FieldDescriptor desc) static XFieldXFactory.createXField(FieldAnnotation f) static XFieldXFactory.createXField(PreorderVisitor visitor) Create an XField object from the field currently being visited by the given PreorderVisitor.static XFieldXFactory.createXField(String className, String fieldName, String fieldSignature, boolean isStatic) Create an XField objectstatic XFieldXFactory.createXField(String className, org.apache.bcel.classfile.Field field) Create an XField object from a BCEL Field.static XFieldXFactory.createXField(org.apache.bcel.classfile.JavaClass javaClass, org.apache.bcel.classfile.Field field) static XFieldXFactory.createXField(org.apache.bcel.generic.FieldInstruction fieldInstruction, org.apache.bcel.generic.ConstantPoolGen cpg) static XFieldXFactory.createXFieldUsingSlashedClassName(String className, String fieldName, String fieldSignature, boolean isStatic) Create an XField objectFind an XField matching given parameters.static XFieldHierarchy.findXField(String className, String fieldName, String fieldSig, boolean isStatic) Look up a field with given name and signature in given class, returning it as anXFieldobject.static XFieldHierarchy.findXField(org.apache.bcel.generic.FieldInstruction fins, org.apache.bcel.generic.ConstantPoolGen cpg) Look up the field referenced by given FieldInstruction, returning it as anXFieldobject.static XFieldXFactory.getExactXField(FieldDescriptor desc) static XFieldXFactory.getExactXField(String className, String name, String signature, boolean isStatic) Get an XField object exactly matching given class, name, and signature.static XFieldXFactory.getExactXField(String className, org.apache.bcel.classfile.Field f) InnerClassAccess.getField()Methods in edu.umd.cs.findbugs.ba that return types with arguments of type XFieldModifier and TypeMethodDescriptionXFactory.allFields()FieldSummary.getFieldsWritten(XMethod method) XClass.getXFields()Methods in edu.umd.cs.findbugs.ba with parameters of type XFieldModifier and TypeMethodDescriptionvoidXFactory.addEmptyArrayField(XField f) booleanFieldSummary.addWrittenOutsideOfConstructor(XField field) org.apache.bcel.classfile.ElementValueJCIPAnnotationDatabase.getFieldAnnotation(XField field, String annotationClass) static Map<Integer, OpcodeStack.Item> PutfieldScanner.getPutfieldsFor(org.apache.bcel.classfile.JavaClass theClass, org.apache.bcel.classfile.Method method, XField field) FieldSummary.getSummary(XField field) booleanJCIPAnnotationDatabase.hasFieldAnnotation(XField field, String annotationClass) booleanXFactory.isEmptyArrayField(XField f) booleanFieldSummary.isWrittenOutsideOfConstructor(XField field) voidFieldSummary.mergeSummary(XField fieldOperand, OpcodeStack.Item mergeValue) Method parameters in edu.umd.cs.findbugs.ba with type arguments of type XFieldModifier and TypeMethodDescriptionvoidFieldSummary.setFieldsWritten(XMethod method, Collection<XField> fields) Constructors in edu.umd.cs.findbugs.ba with parameters of type XFieldModifierConstructorDescriptionInnerClassAccess(String methodName, String methodSig, XField field, boolean isLoad) -
Uses of XField in edu.umd.cs.findbugs.ba.heap
Methods in edu.umd.cs.findbugs.ba.heap with parameters of type XFieldModifier and TypeMethodDescriptionvoidbooleanprotected abstract voidprotected voidprotected voidprotected abstract voidprotected voidprotected void -
Uses of XField in edu.umd.cs.findbugs.ba.npe
Methods in edu.umd.cs.findbugs.ba.npe that return XFieldModifier and TypeMethodDescriptionstatic XFieldNullDerefAndRedundantComparisonFinder.findXFieldFromValueNumber(org.apache.bcel.classfile.Method method, Location location, ValueNumber valueNumber, ValueNumberFrame vnaFrame) Deprecated.PointerUsageRequiringNonNullValue.getNonNullField()Methods in edu.umd.cs.findbugs.ba.npe with parameters of type XFieldModifier and TypeMethodDescriptionPointerUsageRequiringNonNullValue.getStoredIntoNonNullField(XField f) IsNullValue.markInformationAsComingFromFieldValue(XField field) Convert to a value known because it was returned from a method in a method property database. -
Uses of XField in edu.umd.cs.findbugs.ba.type
Methods in edu.umd.cs.findbugs.ba.type with parameters of type XField -
Uses of XField in edu.umd.cs.findbugs.ba.vna
Methods in edu.umd.cs.findbugs.ba.vna that return XFieldModifier and TypeMethodDescriptionstatic XFieldValueNumberSourceInfo.findXFieldFromValueNumber(org.apache.bcel.classfile.Method method, Location location, ValueNumber valueNumber, ValueNumberFrame vnaFrame) AvailableLoad.getField()Get the field for which a load is available.LoadedFieldSet.getField(org.apache.bcel.generic.InstructionHandle handle) Get the field loaded or stored at given instruction, if any.Methods in edu.umd.cs.findbugs.ba.vna with parameters of type XFieldModifier and TypeMethodDescriptionvoidAdd a load of given field at given instruction.voidAdd a store of given field at given instruction.LoadedFieldSet.getLoadStoreCount(XField field) Get the number of times given field is loaded and stored within the method.booleanReturn whether or not the given field is loaded by any instruction in the method.voidValueNumberFrame.killLoadsOfField(XField field) Kill all loads of given field.Method parameters in edu.umd.cs.findbugs.ba.vna with type arguments of type XFieldConstructors in edu.umd.cs.findbugs.ba.vna with parameters of type XFieldModifierConstructorDescriptionAvailableLoad(ValueNumber reference, XField field) Constructor from object reference and instance field.AvailableLoad(XField staticField) Constructor from static field. -
Uses of XField in edu.umd.cs.findbugs.classfile.analysis
Classes in edu.umd.cs.findbugs.classfile.analysis that implement XFieldMethods in edu.umd.cs.findbugs.classfile.analysis that return XFieldModifier and TypeMethodDescriptionMethods in edu.umd.cs.findbugs.classfile.analysis that return types with arguments of type XField -
Uses of XField in edu.umd.cs.findbugs.detect
Methods in edu.umd.cs.findbugs.detect that return XFieldMethods in edu.umd.cs.findbugs.detect that return types with arguments of type XFieldModifier and TypeMethodDescriptionUnreadFields.getReadFields()Deprecated.UseUnreadFieldsData.getReadFields()insteadUnreadFieldsData.getReadFields()UnreadFields.getWrittenFields()Deprecated.UseUnreadFieldsData.getWrittenFields()insteadUnreadFieldsData.getWrittenFields()Methods in edu.umd.cs.findbugs.detect with parameters of type XFieldModifier and TypeMethodDescriptionbooleanInitializeNonnullFieldsInConstructor.checkForInitialization(XField f) booleanUnreadFields.isContainerField(XField f) Deprecated.UseUnreadFieldsData.isContainerField(XField)insteadbooleanUnreadFieldsData.isContainerField(XField f) booleanUnreadFields.isReflexive(XField f) Deprecated.UseUnreadFieldsData.isReflexive(XField)insteadbooleanUnreadFieldsData.isReflexive(XField f) static booleanFindInconsistentSync2.isServletField(XField field) booleanUnreadFields.isWrittenDuringInitialization(XField f) Deprecated.booleanUnreadFieldsData.isWrittenDuringInitialization(XField f) booleanUnreadFields.isWrittenInConstructor(XField f) Deprecated.UseUnreadFieldsData.isWrittenInConstructor(XField)insteadbooleanUnreadFieldsData.isWrittenInConstructor(XField f) booleanUnreadFields.isWrittenOutsideOfInitialization(XField f) Deprecated.booleanUnreadFieldsData.isWrittenOutsideOfInitialization(XField f) Constructors in edu.umd.cs.findbugs.detect with parameters of type XField -
Uses of XField in edu.umd.cs.findbugs.visitclass
Methods in edu.umd.cs.findbugs.visitclass that return XFieldModifier and TypeMethodDescriptionPreorderVisitor.getXField()DismantleBytecode.getXFieldOperand()
ValueNumberSourceInfo.findXFieldFromValueNumber(Method,Location,ValueNumber,ValueNumberFrame)instead