Uses of Interface
edu.umd.cs.findbugs.props.WarningProperty

Packages that use WarningProperty
edu.umd.cs.findbugs.detect   
edu.umd.cs.findbugs.props   
 

Uses of WarningProperty in edu.umd.cs.findbugs.detect
 

Classes in edu.umd.cs.findbugs.detect that implement WarningProperty
 class BadCastWarningProperty
          Warning property for bad cast warnings.
 class DeadLocalStoreProperty
          Warning property for FindDeadLocalStores.
 class InconsistentSyncWarningProperty
          Warning properties for inconsistent synchronization detector.
 class NonNullReturnProperty
           
 class NullArgumentWarningProperty
          Warning property for a null argument being passed to a method which might dereference it.
 class NullDerefProperty
          Warning properties for null pointer dereference and redundant null comparison warnings.
 class RefComparisonWarningProperty
          Warning properties for FindRefComparison detector.
 

Uses of WarningProperty in edu.umd.cs.findbugs.props
 

Classes in edu.umd.cs.findbugs.props that implement WarningProperty
 class AbstractWarningProperty
          Abstract base class for implementing warning properties.
 class GeneralWarningProperty
          General warning properties.
 

Methods in edu.umd.cs.findbugs.props with parameters of type WarningProperty
 WarningPropertySet WarningPropertySet.addProperty(WarningProperty prop)
          Add a warning property to the set.
 boolean WarningPropertySet.checkProperty(WarningProperty prop, java.lang.Object value)
          Check whether or not the given WarningProperty has the given attribute value.
 boolean WarningPropertySet.containsProperty(WarningProperty prop)
          Return whether or not the set contains the given WarningProperty.
 java.lang.Object WarningPropertySet.getProperty(WarningProperty prop)
          Get the value of the attribute for the given WarningProperty.
 void WarningPropertySet.setProperty(WarningProperty prop, java.lang.Boolean value)
          Add a warning property and its attribute value.
 WarningPropertySet WarningPropertySet.setProperty(WarningProperty prop, java.lang.String value)
          Add a warning property and its attribute value.