Package org.junit.runners.model
Class FrameworkMember<T extends FrameworkMember<T>>
- java.lang.Object
-
- org.junit.runners.model.FrameworkMember<T>
-
- All Implemented Interfaces:
Annotatable
- Direct Known Subclasses:
FrameworkField,FrameworkMethod
public abstract class FrameworkMember<T extends FrameworkMember<T>> extends Object implements Annotatable
Parent class forFrameworkFieldandFrameworkMethod- Since:
- 4.7
-
-
Constructor Summary
Constructors Constructor Description FrameworkMember()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Class<?>getDeclaringClass()protected abstract intgetModifiers()abstract StringgetName()abstract Class<?>getType()booleanisPublic()Returns true if this member is public, false if not.booleanisStatic()Returns true if this member is static, false if not.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.junit.runners.model.Annotatable
getAnnotation, getAnnotations
-
-
-
-
Constructor Detail
-
FrameworkMember
public FrameworkMember()
-
-
Method Detail
-
getModifiers
protected abstract int getModifiers()
-
isStatic
public boolean isStatic()
Returns true if this member is static, false if not.
-
isPublic
public boolean isPublic()
Returns true if this member is public, false if not.
-
getDeclaringClass
public abstract Class<?> getDeclaringClass()
-
-