edu.umd.cs.findbugs.detect
Class NullDerefProperty

java.lang.Object
  extended by edu.umd.cs.findbugs.props.AbstractWarningProperty
      extended by edu.umd.cs.findbugs.detect.NullDerefProperty
All Implemented Interfaces:
WarningProperty

public class NullDerefProperty
extends AbstractWarningProperty

Warning properties for null pointer dereference and redundant null comparison warnings.

Author:
David Hovemeyer

Field Summary
static NullDerefProperty CHECKED_VALUE
          Redundant null comparison is of a checked null value.
static NullDerefProperty CREATED_DEAD_CODE
          Redundant nullcheck created dead code.
static NullDerefProperty WOULD_HAVE_BEEN_A_KABOOM
          Redundant nullcheck of previously dereferenced value.
 
Method Summary
 
Methods inherited from class edu.umd.cs.findbugs.props.AbstractWarningProperty
getName, getPriorityAdjustment
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CHECKED_VALUE

public static final NullDerefProperty CHECKED_VALUE
Redundant null comparison is of a checked null value.


WOULD_HAVE_BEEN_A_KABOOM

public static final NullDerefProperty WOULD_HAVE_BEEN_A_KABOOM
Redundant nullcheck of previously dereferenced value.


CREATED_DEAD_CODE

public static final NullDerefProperty CREATED_DEAD_CODE
Redundant nullcheck created dead code.