Home | History | Annotate | Download | only in processor

Lines Matching refs:Templates

32 import javax.xml.transform.Templates;
70 * interface, processes XSLT stylesheets into a Templates object
108 public javax.xml.transform.Templates processFromNode(Node node)
219 * @return A Templates object capable of being used for transformation purposes.
223 javax.xml.transform.Templates processFromNode(Node node, String systemID)
247 * case the prefered templates will be used (i.e. alternate = no).
251 * @return A Source object capable of being used to create a Templates object.
371 * Templates object and fails.
622 Templates templates = newTemplates(src);
623 if( templates==null ) return null;
625 return newXMLFilter(templates);
632 * @param templates non-null reference to Templates object.
638 public XMLFilter newXMLFilter(Templates templates)
643 return new TrAXFilter(templates);
682 Templates templates = newTemplates(src);
683 if( templates==null ) return null;
685 return newTransformerHandler(templates);
690 * ContentHandler events into a Result, based on the Templates argument.
692 * @param templates The source of the transformation instructions.
697 public TransformerHandler newTransformerHandler(Templates templates)
702 (TransformerImpl) templates.newTransformer();
740 // /** The identity transform Templates, built from identityTransform,
742 // private static Templates m_identityTemplate = null;
769 * is constructing the Templates object and fails.
776 Templates tmpl=newTemplates( source );
819 * Templates object and it fails.
827 * Process the source into a Templates object, which is likely
828 * a compiled representation of the source. This Templates object
830 * a Templates object allows the TransformerFactory to do detailed
835 * @return A Templates object capable of being used for transformation purposes.
838 * is constructing the Templates object and fails.
840 public Templates newTemplates(Source source)