Searched refs:IFactoryAnnotation (Results 1 – 12 of 12) sorted by relevance
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | AnnotationHelper.java | 14 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()
|
D | FactoryAnnotation.java | 3 import org.testng.annotations.IFactoryAnnotation; 13 implements IFactoryAnnotation
|
D | JDK15AnnotationFinder.java | 31 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()
|
D | JDK15TagFactory.java | 29 import org.testng.annotations.IFactoryAnnotation; 63 else if (annotationClass == IFactoryAnnotation.class) { in createTag()
|
/external/testng/src/main/java/org/testng/ |
D | IAnnotationTransformer2.java | 5 import org.testng.annotations.IFactoryAnnotation; 45 public void transform(IFactoryAnnotation annotation, Method method); in transform()
|
/external/testng/src/test/java/test/annotationtransformer/ |
D | FactoryTransformer.java | 6 import org.testng.annotations.IFactoryAnnotation; 31 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
|
D | DataProviderTransformer.java | 6 import org.testng.annotations.IFactoryAnnotation; 32 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
|
D | ConfigurationTransformer.java | 6 import org.testng.annotations.IFactoryAnnotation; 34 public void transform(IFactoryAnnotation annotation, Method testMethod) { in transform()
|
D | MyListenerTransformer.java | 6 import org.testng.annotations.IFactoryAnnotation; 28 public void transform(IFactoryAnnotation annotation, Method method) {} in transform()
|
/external/testng/src/test/java/test/mannotation/ |
D | MAnnotationSampleTest.java | 8 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/internal/ |
D | ClassHelper.java | 21 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()
|
/external/testng/src/main/java/org/testng/annotations/ |
D | IFactoryAnnotation.java | 11 public interface IFactoryAnnotation extends IParameterizable, IDataProvidable { interface
|