1 package net.sf.saxon.style; 2 import net.sf.saxon.style.StyleElement; 3 import net.sf.saxon.trans.XPathException; 4 5 import javax.xml.transform.TransformerConfigurationException ; 6 7 10 11 public abstract class ExtensionInstruction extends StyleElement { 12 13 17 18 public final boolean isInstruction() { 19 return true; 20 } 21 22 26 27 public final boolean mayContainFallback() { 28 return true; 29 } 30 31 public void validate() throws XPathException { 32 checkWithinTemplate(); 33 } 34 35 } 36 37 | Popular Tags |