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 ClassDescriptorgetClassDescriptor()java.lang.StringgetName()java.lang.StringgetSignature()booleanisStatic()
-
-
-
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
-
-