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