niagara-ax/decompiled/org/testng/IAnnotationTransformer2.java
2026-03-17 13:31:18 -07:00

16 lines
612 B
Java

package org.testng;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import org.testng.annotations.IConfigurationAnnotation;
import org.testng.annotations.IDataProviderAnnotation;
import org.testng.annotations.IFactoryAnnotation;
public interface IAnnotationTransformer2 extends IAnnotationTransformer {
void transform(IConfigurationAnnotation iConfigurationAnnotation, Class cls, Constructor constructor, Method method);
void transform(IDataProviderAnnotation iDataProviderAnnotation, Method method);
void transform(IFactoryAnnotation iFactoryAnnotation, Method method);
}