Home
last modified time | relevance | path

Searched refs:IAnnotation (Results 1 – 15 of 15) sorted by relevance

/external/testng/src/main/java/org/testng/internal/annotations/
DIAnnotationFinder.java7 import org.testng.annotations.IAnnotation;
24 public <A extends IAnnotation> A findAnnotation(Class<?> cls, Class<A> annotationClass); in findAnnotation()
33 public <A extends IAnnotation> A findAnnotation(Method m, Class<A> annotationClass); in findAnnotation()
34 <A extends IAnnotation> A findAnnotation(ITestNGMethod m, Class<A> annotationClass); in findAnnotation()
43 public <A extends IAnnotation> A findAnnotation(Constructor<?> cons, Class<A> annotationClass); in findAnnotation()
DJDK15AnnotationFinder.java27 import org.testng.annotations.IAnnotation;
52 private Map<Class<? extends IAnnotation>, Class<? extends Annotation>> m_annotationMap =
54 private Map<Pair<Annotation, ?>, IAnnotation> m_annotations = new ConcurrentHashMap<>();
104 public <A extends IAnnotation> A findAnnotation(Method m, Class<A> annotationClass) { in findAnnotation()
116 public <A extends IAnnotation> A findAnnotation(ITestNGMethod tm, Class<A> annotationClass) { in findAnnotation()
137 private void transform(IAnnotation a, Class<?> testClass, in transform()
185 public <A extends IAnnotation> A findAnnotation(Class<?> cls, Class<A> annotationClass) { in findAnnotation()
197 public <A extends IAnnotation> A findAnnotation(Constructor<?> cons, Class<A> annotationClass) { in findAnnotation()
208 private <A extends IAnnotation> A findAnnotation(Class cls, Annotation a, in findAnnotation()
215 IAnnotation result = m_annotations.get(p); in findAnnotation()
DJDK15TagFactory.java25 import org.testng.annotations.IAnnotation;
49 public <A extends IAnnotation> A createTag(Class<?> cls, Annotation a, in createTag()
51 IAnnotation result = null; in createTag()
96 private IAnnotation maybeCreateNewConfigurationTag(Class<?> cls, Annotation a, in maybeCreateNewConfigurationTag()
99 IAnnotation result = null; in maybeCreateNewConfigurationTag()
284 private IAnnotation createConfigurationTag(Class<?> cls, Annotation a, in createConfigurationTag()
325 private IAnnotation createDataProviderTag(Annotation a) { in createDataProviderTag()
335 private IAnnotation createExpectedExceptionsTag(Annotation a) { in createExpectedExceptionsTag()
344 private IAnnotation createFactoryTag(Class<?> cls, Annotation a) { in createFactoryTag()
357 private IAnnotation createObjectFactoryTag(Annotation a) { in createObjectFactoryTag()
[all …]
DListenersAnnotation.java4 import org.testng.annotations.IAnnotation;
6 public class ListenersAnnotation implements IListeners, IAnnotation {
DAnnotationHelper.java10 import org.testng.annotations.IAnnotation;
196 Class<? extends IAnnotation> annotationClass, IAnnotationFinder annotationFinder, in findMethodsWithAnnotation()
299 Class<? extends IAnnotation> annotationClass) { in isAnnotationPresent()
304 Class<? extends IAnnotation> annotationClass) { in isAnnotationPresent()
/external/testng/src/main/java/org/testng/internal/
DTestNGClassFinder.java15 import org.testng.annotations.IAnnotation;
70 IAnnotation a = annotationFinder.findAnnotation(m, in TestNGClassFinder()
233 IAnnotation ma= annotationFinder.findAnnotation(m, annotation); in isTestNGClass()
240 IAnnotation a= annotationFinder.findAnnotation(cls, annotation); in isTestNGClass()
247 IAnnotation ca= annotationFinder.findAnnotation(ctor, annotation); in isTestNGClass()
DConfigurationMethod.java9 import org.testng.annotations.IAnnotation;
339 IAnnotation a = AnnotationHelper.findConfiguration(m_annotationFinder, m_method.getMethod()); in init()
445 IAnnotation before = m_annotationFinder.findAnnotation(getMethod(), IBeforeMethod.class); in isFirstTimeOnly()
454 IAnnotation before = m_annotationFinder.findAnnotation(getMethod(), IAfterMethod.class); in isLastTimeOnly()
DClassHelper.java20 import org.testng.annotations.IAnnotation;
152 IAnnotation f = finder.findAnnotation(constructor, IFactoryAnnotation.class); in findDeclaredFactoryMethod()
/external/testng/src/main/java/org/testng/annotations/
DIAnnotation.java10 public interface IAnnotation { interface
DIObjectFactoryAnnotation.java8 public interface IObjectFactoryAnnotation extends IAnnotation
DIExpectedExceptionsAnnotation.java8 public interface IExpectedExceptionsAnnotation extends IAnnotation {
DIParametersAnnotation.java9 public interface IParametersAnnotation extends IAnnotation {
DIParameterizable.java9 public interface IParameterizable extends IAnnotation {
DIDataProviderAnnotation.java9 public interface IDataProviderAnnotation extends IAnnotation {
DIListenersAnnotation.java5 public interface IListenersAnnotation extends IAnnotation {