edu.umd.cs.findbugs.ba
Interface ClassMember
public
interface
ClassMember
extends Comparable<ClassMember>, Serializable
Common super-interface for class members (fields and methods).
Author: David Hovemeyer
See Also: XField XMethod
Method Summary |
int | getAccessFlags()
Get the field/method's access flags. |
String | getClassName()
Get the full name of the class the field/method is defined in. |
String | getName()
Get the name of the field/method. |
String | getPackageName()
Get the package name of the class the field/method is defined in. |
String | getSignature()
Get the signature representing the field/method's type. |
boolean | isFinal()
Is this a final field/method? |
boolean | isPrivate()
Is this a private field/method? |
boolean | isProtected()
Is this a protected field/method? |
boolean | isPublic()
Is this a public field/method? |
boolean | isResolved()
Did we find a declaration of this member? |
boolean | isStatic()
Is this a static field/method? |
public int getAccessFlags()
Get the field/method's access flags.
public String getClassName()
Get the full name of the class the field/method is defined in.
public String getName()
Get the name of the field/method.
public String getPackageName()
Get the package name of the class the field/method is defined in.
public String getSignature()
Get the signature representing the field/method's type.
public boolean isFinal()
Is this a final field/method?
public boolean isPrivate()
Is this a private field/method?
public boolean isProtected()
Is this a protected field/method?
public boolean isPublic()
Is this a public field/method?
public boolean isResolved()
Did we find a declaration of this member?
public boolean isStatic()
Is this a static field/method?
FindBugs™ is licenced under the LGPL. Copyright © 2006 University of Maryland.