Home
last modified time | relevance | path

Searched refs:IFactoryAnnotation (Results 1 – 12 of 12) sorted by relevance

/external/testng/src/main/java/org/testng/internal/annotations/
DAnnotationHelper.java14 import org.testng.annotations.IFactoryAnnotation;
43 public static IFactoryAnnotation findFactory(IAnnotationFinder finder, Method m) { in findFactory()
44 return finder.findAnnotation(m, IFactoryAnnotation.class); in findFactory()
47 public static IFactoryAnnotation findFactory(IAnnotationFinder finder, Constructor c) { in findFactory()
48 return finder.findAnnotation(c, IFactoryAnnotation.class); in findFactory()
172 IFactoryAnnotation.class, IParametersAnnotation.class,
224 isAnnotationPresent(annotationFinder, m, IFactoryAnnotation.class) || in findMethodsWithAnnotation()
DFactoryAnnotation.java3 import org.testng.annotations.IFactoryAnnotation;
13 implements IFactoryAnnotation
DJDK15AnnotationFinder.java31 import org.testng.annotations.IFactoryAnnotation;
65 m_annotationMap.put(IFactoryAnnotation.class, Factory.class); in JDK15AnnotationFinder()
167 else if (a instanceof IFactoryAnnotation) { in transform()
168 transformer2.transform((IFactoryAnnotation) a, testMethod); in transform()
DJDK15TagFactory.java29 import org.testng.annotations.IFactoryAnnotation;
63 else if (annotationClass == IFactoryAnnotation.class) { in createTag()
/external/testng/src/main/java/org/testng/
DIAnnotationTransformer2.java5 import org.testng.annotations.IFactoryAnnotation;
45 public void transform(IFactoryAnnotation annotation, Method method); in transform()
/external/testng/src/test/java/test/annotationtransformer/
DConfigurationTransformer.java6 import org.testng.annotations.IFactoryAnnotation;
34 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
DFactoryTransformer.java6 import org.testng.annotations.IFactoryAnnotation;
31 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
DDataProviderTransformer.java6 import org.testng.annotations.IFactoryAnnotation;
32 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
DMyListenerTransformer.java6 import org.testng.annotations.IFactoryAnnotation;
28 public void transform(IFactoryAnnotation annotation, Method method) {} in transform()
/external/testng/src/test/java/test/mannotation/
DMAnnotationSampleTest.java8 import org.testng.annotations.IFactoryAnnotation;
205 IFactoryAnnotation factory= in verifyFactory()
206 (IFactoryAnnotation) m_finder.findAnnotation(method, IFactoryAnnotation.class); in verifyFactory()
/external/testng/src/main/java/org/testng/annotations/
DIFactoryAnnotation.java11 public interface IFactoryAnnotation extends IParameterizable, IDataProvidable { interface
/external/testng/src/main/java/org/testng/internal/
DClassHelper.java21 import org.testng.annotations.IFactoryAnnotation;
141 IFactoryAnnotation f = finder.findAnnotation(method, IFactoryAnnotation.class); in findDeclaredFactoryMethod()
152 IAnnotation f = finder.findAnnotation(constructor, IFactoryAnnotation.class); in findDeclaredFactoryMethod()