Lines Matching refs:xsltStylesheet
41 public static String transform(String input, String xsltStylesheet) {
42 return transform(input, xsltStylesheet, new ValueMap() );
45 public static String transform(String input, String xsltStylesheet, ValueMap parameters) {
53 System.out.println("XSLT " + (xsltStylesheet==null) + " " +
54 xsltStylesheet.length() + " " + xsltStylesheet);
57 if(xsltStylesheet == null)
60 xsltStylesheet = xsltStylesheet.trim();
65 new StreamSource(new StringReader(xsltStylesheet)));
89 System.out.println("XSLT " + xsltStylesheet);