1package org.testng.xml;
2
3import org.testng.TestNGException;
4
5import java.io.InputStream;
6
7public interface IFileParser<T> {
8
9  T parse(String filePath, InputStream is, boolean loadClasses) throws TestNGException;
10
11}
12