package at.gv.egovernment.moa.spss.api.impl; import java.util.ArrayList; import java.util.List; import at.gv.egovernment.moa.spss.api.common.XPathFilter2Transform; /** * Default implementation of XPathFilter2Transform. * * @author Fatemeh Philippi * @version $Id$ */ public class XPathFilter2TransformImpl extends TransformImpl implements XPathFilter2Transform { /** The XPath filters. */ private List filters; /** * Create a new XPathFilter2TransformImpl object. */ public XPathFilter2TransformImpl() { setAlgorithmURI(XPATH_FILTER2); } /** * Sets the XPath filters contained in this * XPathFilter2Transform. * * @param filters The XPath filters contained in this * XPathFilter2Transform. */ public void setFilters(List filters) { this.filters = new ArrayList(filters); } public List getFilters() { return filters; } }