Java Doc for XSLTransformer.java in  » Workflow-Engines » OpenWFE » org » jdom » transform » 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 » Workflow Engines » OpenWFE » org.jdom.transform 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jdom.transform.XSLTransformer

XSLTransformer
public class XSLTransformer (Code)
A convenience class to handle simple transformations. The JAXP TrAX classes have more bells and whistles and can be used with JDOMSource and JDOMResult for advanced uses. This class handles the common case and presents a simple interface. XSLTransformer is thread safe and may be used from multiple threads.

 XSLTransformer transformer = new XSLTransformer("file.xsl");
 Document x2 = transformer.transform(x);  // x is a Document
 Document y2 = transformer.transform(y);  // y is a Document
 
JDOM 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: net.sf.saxon.TransformerFactoryImpl
  • Xalan: org.apache.xalan.processor.TransformerFactoryImpl
  • jd.xslt: jd.xml.xslt.trax.TransformerFactoryImpl
  • Oracle: oracle.xml.jaxp.JXSAXTransformerFactory

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. 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, this is Xalan 2.2d10.

version:
   $Revision: 1.1 $, $Date: 2005/04/27 09:32:43 $
author:
   Jason Hunter
author:
   Elliotte Rusty Harold



Constructor Summary
public  XSLTransformer(String stylesheetSystemId)
     Creates a transformer for a given stylesheet system id.
public  XSLTransformer(InputStream stylesheet)
    

This will create a new XSLTransformer by reading the stylesheet from the specified InputStream.

public  XSLTransformer(Reader stylesheet)
    

This will create a new XSLTransformer by reading the stylesheet from the specified Reader.

public  XSLTransformer(File stylesheet)
    

This will create a new XSLTransformer by reading the stylesheet from the specified File.

public  XSLTransformer(Document stylesheet)
    

This will create a new XSLTransformer by reading the stylesheet from the specified Document.


Method Summary
public  Listtransform(List inputNodes)
     Transforms the given input nodes to a list of output nodes.
public  Documenttransform(Document inputDoc)
     Transforms the given document to an output document.


Constructor Detail
XSLTransformer
public XSLTransformer(String stylesheetSystemId) throws XSLTransformException(Code)
Creates a transformer for a given stylesheet system id.
Parameters:
  stylesheetSystemId - source stylesheet as a Source object
throws:
  XSLTransformException - if there's a problem in the TrAX back-end



XSLTransformer
public XSLTransformer(InputStream stylesheet) throws XSLTransformException(Code)

This will create a new XSLTransformer by reading the stylesheet from the specified InputStream.


Parameters:
  stylesheet - InputStream from which the stylesheet is read.
throws:
  XSLTransformException - when an IOException, format error, orsomething else prevents the stylesheet from being compiled



XSLTransformer
public XSLTransformer(Reader stylesheet) throws XSLTransformException(Code)

This will create a new XSLTransformer by reading the stylesheet from the specified Reader.


Parameters:
  stylesheet - Reader from which the stylesheet is read.
throws:
  XSLTransformException - when an IOException, format error, orsomething else prevents the stylesheet from being compiled



XSLTransformer
public XSLTransformer(File stylesheet) throws XSLTransformException(Code)

This will create a new XSLTransformer by reading the stylesheet from the specified File.


Parameters:
  stylesheet - File from which the stylesheet is read.
throws:
  XSLTransformException - when an IOException, format error, orsomething else prevents the stylesheet from being compiled



XSLTransformer
public XSLTransformer(Document stylesheet) throws XSLTransformException(Code)

This will create a new XSLTransformer by reading the stylesheet from the specified Document.


Parameters:
  stylesheet - Document containing the stylesheet.
throws:
  XSLTransformException - when the supplied Documentis not syntactically correct XSLT




Method Detail
transform
public List transform(List inputNodes) throws XSLTransformException(Code)
Transforms the given input nodes to a list of output nodes.
Parameters:
  inputNodes - input nodes transformed output nodes
throws:
  XSLTransformException - if there's a problem in the transformation



transform
public Document transform(Document inputDoc) throws XSLTransformException(Code)
Transforms the given document to an output document.
Parameters:
  inputDoc - input document transformed output document
throws:
  XSLTransformException - if there's a problem in the transformation



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.