// what happens if the imported node is modified, do we use a // cached stylesheet? public void importStylesheet(JavaScriptObject stylesheet) { processor.importStylesheet(stylesheet); }
public XSLT20Processor(JavaScriptObject stylesheet) { this(); // call constructor if (stylesheet != null) { processor.importStylesheet(stylesheet); } }