Searched refs:IAnnotation (Results 1 – 15 of 15) sorted by relevance
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | IAnnotationFinder.java | 7 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()
|
D | JDK15AnnotationFinder.java | 27 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()
|
D | JDK15TagFactory.java | 25 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 …]
|
D | ListenersAnnotation.java | 4 import org.testng.annotations.IAnnotation; 6 public class ListenersAnnotation implements IListeners, IAnnotation {
|
D | AnnotationHelper.java | 10 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/ |
D | TestNGClassFinder.java | 15 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()
|
D | ConfigurationMethod.java | 9 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()
|
D | ClassHelper.java | 20 import org.testng.annotations.IAnnotation; 152 IAnnotation f = finder.findAnnotation(constructor, IFactoryAnnotation.class); in findDeclaredFactoryMethod()
|
/external/testng/src/main/java/org/testng/annotations/ |
D | IAnnotation.java | 10 public interface IAnnotation { interface
|
D | IObjectFactoryAnnotation.java | 8 public interface IObjectFactoryAnnotation extends IAnnotation
|
D | IParametersAnnotation.java | 9 public interface IParametersAnnotation extends IAnnotation {
|
D | IExpectedExceptionsAnnotation.java | 8 public interface IExpectedExceptionsAnnotation extends IAnnotation {
|
D | IParameterizable.java | 9 public interface IParameterizable extends IAnnotation {
|
D | IDataProviderAnnotation.java | 9 public interface IDataProviderAnnotation extends IAnnotation {
|
D | IListenersAnnotation.java | 5 public interface IListenersAnnotation extends IAnnotation {
|