Home | History | Annotate | Download | only in annotations
      1 package org.testng.internal.annotations;
      2 
      3 import java.lang.reflect.Constructor;
      4 import java.lang.reflect.Method;
      5 
      6 public class BaseAnnotation {
      7   private Class m_testClass;
      8   private Method m_method;
      9   private Constructor m_constructor;
     10 
     11   public Constructor getConstructor() {
     12     return m_constructor;
     13   }
     14   public void setConstructor(Constructor constructor) {
     15     m_constructor = constructor;
     16   }
     17   public Method getMethod() {
     18     return m_method;
     19   }
     20   public void setMethod(Method method) {
     21     m_method = method;
     22   }
     23   public Class getTestClass() {
     24     return m_testClass;
     25   }
     26   public void setTestClass(Class testClass) {
     27     m_testClass = testClass;
     28   }
     29 
     30 }
     31