1 package org.apache.turbine.services.xslt; 2 3 18 19 import java.io.Reader ; 20 import java.io.Writer ; 21 22 import org.apache.turbine.services.Service; 23 24 import org.w3c.dom.Node ; 25 26 33 public interface XSLTService 34 extends Service 35 { 36 37 String SERVICE_NAME = "XSLTService"; 38 39 40 String STYLESHEET_PATH = "path"; 41 42 43 String STYLESHEET_CACHING = "cache"; 44 45 53 void transform(String xslName, Reader in, Writer out) throws Exception ; 54 55 62 String transform(String xslName, Reader in) throws Exception ; 63 64 72 void transform(String xslName, Node in, Writer out) throws Exception ; 73 74 81 String transform(String xslName, Node in) throws Exception ; 82 } 83 | Popular Tags |