9 lines
209 B
Java
9 lines
209 B
Java
package org.testng.xml;
|
|
|
|
import java.io.InputStream;
|
|
import org.testng.TestNGException;
|
|
|
|
public interface IFileParser<T> {
|
|
T parse(String str, InputStream inputStream, boolean z) throws TestNGException;
|
|
}
|