blob: b682fee9cc38f07afce3d7ebf0745384dddae5d9 [file] [log] [blame]
package org.testng.xml;
import java.util.Collection;
/**
* Used by Parser to perform changes on an XML suite after it's been parsed.
*
* @author Cedric Beust <cedric@beust.com>
*/
public interface IPostProcessor {
Collection<XmlSuite> process(Collection<XmlSuite> suites);
}