package at.gv.egovernment.moa.spss.api.impl; import org.w3c.dom.Element; import at.gv.egovernment.moa.spss.api.common.XSLTTransform; /** * Default implementation of XSLTTransform. * * @author Fatemeh Philippi * @version $Id$ */ public class XSLTransformImpl extends TransformImpl implements XSLTTransform { /** The XSLT stylesheet to apply. */ private Element styleSheet; /** * Create a new XSLTransformImpl object. */ public XSLTransformImpl() { setAlgorithmURI(XSLT); } /** * Sets the XSLT stylesheet to apply. * * @param styleSheet The XSLT stylesheet to apply. */ public void setStylesheet(Element styleSheet) { this.styleSheet = styleSheet; } public Element getStylesheet() { return styleSheet; } }