Uses of Class
edu.umd.cs.findbugs.detect.DeadLocalStoreProperty

Packages that use DeadLocalStoreProperty
edu.umd.cs.findbugs.detect   
 

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

Fields in edu.umd.cs.findbugs.detect declared as DeadLocalStoreProperty
static DeadLocalStoreProperty DeadLocalStoreProperty.CACHING_VALUE
          Caching value
static DeadLocalStoreProperty DeadLocalStoreProperty.DEAD_INCREMENT
          The dead store is an increment.
static DeadLocalStoreProperty DeadLocalStoreProperty.DEAD_OBJECT_STORE
          Dead store is of a newly allocated object.
static DeadLocalStoreProperty DeadLocalStoreProperty.DEFENSIVE_CONSTANT_OPCODE
          Dead store is of a defense programming constant value.
static DeadLocalStoreProperty DeadLocalStoreProperty.EXCEPTION_HANDLER
          Dead store is likely to be the exception object in an exception handler.
static DeadLocalStoreProperty DeadLocalStoreProperty.KILLED_BY_SUBSEQUENT_STORE
          Store is killed by a subsequent store.
static DeadLocalStoreProperty DeadLocalStoreProperty.LOCAL_NAME
          Name of the local variable.
static DeadLocalStoreProperty DeadLocalStoreProperty.MANY_STORES
          many stores
static DeadLocalStoreProperty DeadLocalStoreProperty.NO_LOADS
          There are no loads of this local.
static DeadLocalStoreProperty DeadLocalStoreProperty.PARAM_DEAD_ON_ENTRY
          This local is a parameter which is dead on entry to the method.
static DeadLocalStoreProperty DeadLocalStoreProperty.SINGLE_DEAD_INCREMENT
          The dead store is an increment: the only one in the method.
static DeadLocalStoreProperty DeadLocalStoreProperty.SINGLE_STORE
          There is only one store of this local.
static DeadLocalStoreProperty DeadLocalStoreProperty.TWO_STORES_MULTIPLE_LOADS
          Method contains two stores and multiple loads of this local.