Java Doc for XSLTransform.java in  » XML » xom » nu » xom » xslt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » xom » nu.xom.xslt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   nu.xom.xslt.XSLTransform

XSLTransform
final public class XSLTransform (Code)

Serves as an interface to a TrAX aware XSLT processor such as Xalan or Saxon. The following example shows how to apply an XSL Transformation to a XOM document and get the transformation result in the form of a XOM Nodes:

public static Nodes transform(Document in) 
 throws XSLException, ParsingException, IOException {
 Builder builder = new Builder();
 Document stylesheet = builder.build("mystylesheet.xsl");
 XSLTransform transform = new XSLTransform(stylesheet);
 return transform.transform(doc);
 } 

XOM relies on TrAX to perform the transformation. The javax.xml.transform.TransformerFactory Java system property determines which XSLT engine TrAX uses. Its value should be the fully qualified name of the implementation of the abstract javax.xml.transform.TransformerFactory class. Values of this property for popular XSLT processors include:

  • Saxon 6.x: com.icl.saxon.TransformerFactoryImpl
  • Saxon 7.x and 8.x: net.sf.saxon.TransformerFactoryImpl
  • Xalan interpretive: org.apache.xalan.processor.TransformerFactoryImpl
  • Xalan XSLTC: org.apache.xalan.xsltc.trax.TransformerFactoryImpl
  • jd.xslt: jd.xml.xslt.trax.TransformerFactoryImpl
  • Oracle: oracle.xml.jaxp.JXSAXTransformerFactory
  • Java 1.5 bundled Xalan: com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl

This property can be set in all the usual ways a Java system property can be set. TrAX picks from them in this order:

  1. The most recent value specified by invoking System.setProperty("javax.xml.transform.TransformerFactory", "classname")
  2. The value specified at the command line using the -Djavax.xml.transform.TransformerFactory=classname option to the java interpreter
  3. The class named in the lib/jaxp.properties properties file in the JRE directory, in a line like this one:
    javax.xml.parsers.DocumentBuilderFactory=classname
  4. The class named in the META-INF/services/javax.xml.transform.TransformerFactory file in the JAR archives available to the runtime
  5. Finally, if all of the above options fail, a default implementation is chosen. In Sun's JDK 1.4.0 and 1.4.1, this is Xalan 2.2d10. In JDK 1.4.2, this is Xalan 2.4. In JDK 1.4.2_02, this is Xalan 2.4.1. In JDK 1.4.2_03, 1.5 beta 2, and 1.5 RC1 this is Xalan 2.5.2. In JDK 1.4.2_05, this is Xalan 2.4.1. (Yes, Sun appears to have reverted to 2.4.1 in 1.4.2_05.)

author:
   Elliotte Rusty Harold
version:
   1.1b3



Constructor Summary
public  XSLTransform(Document stylesheet)
    

Creates a new XSLTransform by reading the stylesheet from the supplied document.

public  XSLTransform(Document stylesheet, NodeFactory factory)
    

Creates a new XSLTransform by reading the stylesheet from the supplied document. The supplied factory will be used to create all nodes in the result tree, so that a transform can create instances of subclasses of the standard XOM classes.


Method Summary
public  voidsetParameter(String name, Object value)
    

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String.

public  voidsetParameter(String name, String namespace, Object value)
    

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String.

public static  DocumenttoDocument(Nodes nodes)
    

Builds a Document object from a Nodes object.

public  StringtoString()
    

Returns a string form of this XSLTransform, suitable for debugging.

public  Nodestransform(Document in)
    

Creates a new Nodes from the input Document by applying this object's stylesheet.

public  Nodestransform(Nodes in)
    

Creates a new Nodes object from the input Nodes object by applying this object's stylesheet.



Constructor Detail
XSLTransform
public XSLTransform(Document stylesheet) throws XSLException(Code)

Creates a new XSLTransform by reading the stylesheet from the supplied document.


Parameters:
  stylesheet - document containing the stylesheet
throws:
  XSLException - when the supplied documentis not syntactically correct XSLT



XSLTransform
public XSLTransform(Document stylesheet, NodeFactory factory) throws XSLException(Code)

Creates a new XSLTransform by reading the stylesheet from the supplied document. The supplied factory will be used to create all nodes in the result tree, so that a transform can create instances of subclasses of the standard XOM classes. Because an XSL transformation generates a list of nodes rather than a document, the factory's startMakingDocument and finishMakingDocument methods are not called.


Parameters:
  stylesheet - document containing the stylesheet
Parameters:
  factory - the factory used to build nodes in the result tree
throws:
  XSLException - when the supplied documentis not syntactically correct XSLT




Method Detail
setParameter
public void setParameter(String name, Object value)(Code)

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String. However, it may be another type if the underlying XSLT processor supports that type. Passing null for the value removes the parameter.


Parameters:
  name - the name of the parameter
Parameters:
  value - the value of the parameter



setParameter
public void setParameter(String name, String namespace, Object value)(Code)

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String. However, it may be another type if the underlying XSLT processor supports that type. Passing null for the value removes the parameter.


Parameters:
  name - the name of the parameter
Parameters:
  namespace - the namespace URI of the parameter
Parameters:
  value - the value of the parameter



toDocument
public static Document toDocument(Nodes nodes)(Code)

Builds a Document object from a Nodes object. This is useful when the stylesheet is known to produce a well-formed document with a single root element. That is, the Node returned contains only comments, processing instructions, and exactly one element. If the stylesheet produces anything else, this method throws XMLException.


Parameters:
  nodes - the nodes to be placed in the new document a document containing the nodes
throws:
  XMLException - if nodes does not containexactly one element or if it contains any text nodes orattributes



toString
public String toString()(Code)

Returns a string form of this XSLTransform, suitable for debugging.

debugging string



transform
public Nodes transform(Document in) throws XSLException(Code)

Creates a new Nodes from the input Document by applying this object's stylesheet. The original Document is not changed.


Parameters:
  in - document to transform a Nodes containing the result of thetransformation
throws:
  XSLException - if the transformation fails, normallydue to an XSLT error



transform
public Nodes transform(Nodes in) throws XSLException(Code)

Creates a new Nodes object from the input Nodes object by applying this object's stylesheet. The original Nodes object is not changed.


Parameters:
  in - document to transform a Nodes containing the result of the transformation
throws:
  XSLException - if the transformation fails, normallydue to an XSLT error



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.