1package org.testng.xml;
2
3import java.util.Collection;
4
5/**
6 * Used by Parser to perform changes on an XML suite after it's been parsed.
7 *
8 * @author Cedric Beust <cedric@beust.com>
9 */
10public interface IPostProcessor {
11
12  Collection<XmlSuite> process(Collection<XmlSuite> suites);
13
14}
15