1 package org.testng.xml; 2 3 import 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 */ 10 public interface IPostProcessor { 11 process(Collection<XmlSuite> suites)12 Collection<XmlSuite> process(Collection<XmlSuite> suites); 13 14 } 15