1 4 7 package javax.xml.crypto.dsig.spec; 8 9 import javax.xml.crypto.dsig.Transform; 10 import javax.xml.crypto.XMLStructure; 11 12 31 public final class XSLTTransformParameterSpec implements TransformParameterSpec{ 32 private XMLStructure stylesheet; 33 34 42 public XSLTTransformParameterSpec(XMLStructure stylesheet) { 43 if (stylesheet == null) { 44 throw new NullPointerException (); 45 } 46 this.stylesheet = stylesheet; 47 } 48 49 54 public XMLStructure getStylesheet() { 55 return stylesheet; 56 } 57 } 58 | Popular Tags |