Package edu.umd.cs.findbugs.classfile
Interface FieldOrMethodName
-
- All Known Subinterfaces:
ClassMember
,XField
,XMethod
- All Known Implementing Classes:
AbstractClassMember
,AbstractField
,AbstractMethod
,FieldDescriptor
,FieldInfo
,FieldOrMethodDescriptor
,MethodDescriptor
,MethodInfo
,UnresolvedXField
public interface FieldOrMethodName
- Author:
- pugh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassDescriptor
getClassDescriptor()
java.lang.String
getName()
java.lang.String
getSignature()
boolean
isStatic()
-
-
-
Method Detail
-
getClassDescriptor
ClassDescriptor getClassDescriptor()
- Returns:
- a ClassDescriptor for the field/method's class
-
getName
java.lang.String getName()
- Returns:
- Returns the field/method name
-
getSignature
java.lang.String getSignature()
- Returns:
- Returns the field/method signature
-
isStatic
boolean isStatic()
- Returns:
- Returns true if field/method is static, false if not
-
-