Java Doc for Transform.java in  » XML » XPath-Saxon » net » sf » saxon » 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 » XPath Saxon » net.sf.saxon 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sf.saxon.Transform

All known Subclasses:   net.sf.saxon.dom.DOMTransform,  net.sf.saxon.jdom.JDOMTransform,
Transform
public class Transform (Code)
This Transform class is the entry point to the Saxon XSLT Processor. This class is provided to control the processor from the command line.

The XSLT syntax supported conforms to the W3C XSLT 1.0 and XPath 1.0 recommendation. Only the transformation language is implemented (not the formatting objects). Saxon extensions are documented in the file extensions.html
author:
   Michael H. Kay



Field Summary
protected  Configurationconfig
    
protected  TransformerFactoryImplfactory
    
protected  intrepeat
    
protected  booleanshowTime
    
 StringsourceParserName
    
protected  booleanuseURLs
    


Method Summary
protected  voidbadUsage(String name, String message)
    
protected  voiddoMain(String args, String name)
     Support method for main program.
public  voidexecute(String initialTemplate, Templates sheet, File outputFile, ArrayList parameterList, String initialMode)
    
protected  ConfigurationgetConfiguration()
     Get the configuration.
public static  ObjectloadDocuments(String sourceFileName, boolean useURLs, Configuration config, boolean useSAXSource)
     Load a document, or all the documents in a directory, given a filename or URL if sourceFileName represents a single source document, return a Source object representingthat document.
public static  voidmain(String args)
     Main program, can be used directly from the command line.

The format is:

java net.sf.saxon.Transform [options] source-file style-file >output-file

followed by any number of parameters in the form {keyword=value}...

public  Listpreprocess(List sources)
     Preprocess the list of sources.
public  voidprocessDirectory(List sources, Templates sheet, File outputDir, ArrayList parameterList, String initialMode)
    
public  voidprocessDirectoryAssoc(List sources, File outputDir, ArrayList parameterList, String initialMode)
    
public  voidprocessFile(Source source, Templates sheet, File outputFile, ArrayList parameterList, String initialMode)
    
public  voidprocessFileAssoc(Source sourceInput, String localName, File outputFile, ArrayList parameterList, String initialMode)
    
protected static  voidquit(String message, int code)
    
protected  voidsetFactoryConfiguration()
     Set the configuration in the TransformerFactory.
public  voidsetPOption(Configuration config)
    

Field Detail
config
protected Configuration config(Code)



factory
protected TransformerFactoryImpl factory(Code)



repeat
protected int repeat(Code)



showTime
protected boolean showTime(Code)



sourceParserName
String sourceParserName(Code)



useURLs
protected boolean useURLs(Code)





Method Detail
badUsage
protected void badUsage(String name, String message)(Code)
Report incorrect usage of the command line, with a list of the options and arguments that are available
Parameters:
  name - The name of the command being executed (allows subclassing)
Parameters:
  message - The error message



doMain
protected void doMain(String args, String name)(Code)
Support method for main program. This support method can also be invoked from subclasses that support the same command line interface
Parameters:
  args - the command-line arguments
Parameters:
  name - name of the class, to be used in error messages



execute
public void execute(String initialTemplate, Templates sheet, File outputFile, ArrayList parameterList, String initialMode) throws TransformerException(Code)
Invoke a supplied stylesheet with no source document
Parameters:
  initialTemplate - The entry point to the stylesheet
Parameters:
  sheet - The Templates object identifying the stylesheet
Parameters:
  outputFile - The output file to contain the results of thetransformation
Parameters:
  parameterList - List of parameters to be supplied to thetransformation
Parameters:
  initialMode - Initial mode for executing the transformation
throws:
  net.sf.saxon.trans.XPathException - If the transformation fails



getConfiguration
protected Configuration getConfiguration()(Code)
Get the configuration.



loadDocuments
public static Object loadDocuments(String sourceFileName, boolean useURLs, Configuration config, boolean useSAXSource) throws TransformerException(Code)
Load a document, or all the documents in a directory, given a filename or URL if sourceFileName represents a single source document, return a Source object representingthat document. If sourceFileName represents a directory, return a List containing multiple Sourceobjects, one for each file in the directory.



main
public static void main(String args) throws java.lang.Exception(Code)
Main program, can be used directly from the command line.

The format is:

java net.sf.saxon.Transform [options] source-file style-file >output-file

followed by any number of parameters in the form {keyword=value}... which can be referenced from within the stylesheet.

This program applies the XSL style sheet in style-file to the source XML document in source-file.


Parameters:
  args - List of arguments supplied on operating system command line
throws:
  java.lang.Exception - Indicates that a compile-time orrun-time error occurred



preprocess
public List preprocess(List sources) throws XPathException(Code)
Preprocess the list of sources. This method exists so that it can be overridden in a subclass



processDirectory
public void processDirectory(List sources, Templates sheet, File outputDir, ArrayList parameterList, String initialMode) throws TransformerException(Code)
Process each file in the source directory using the same supplied stylesheet
Parameters:
  sources - The sources in the directory to be processed
Parameters:
  sheet - The Templates object identifying the stylesheet
Parameters:
  outputDir - The directory in which output files are to becreated
Parameters:
  parameterList - List of parameters to be supplied to eachtransformation
Parameters:
  initialMode - Initial mode for executing eachtransformation
throws:
  XPathException - when any error occurs during atransformation



processDirectoryAssoc
public void processDirectoryAssoc(List sources, File outputDir, ArrayList parameterList, String initialMode) throws Exception(Code)
Process each file in the source directory using its own associated stylesheet
Parameters:
  sources - The sources in the directory to be processed
Parameters:
  outputDir - The directory in which output files are to becreated
Parameters:
  parameterList - List of parameters to be supplied to eachtransformation
Parameters:
  initialMode - Initial mode for executing eachtransformation
throws:
  Exception - when any error occurs during a transformation



processFile
public void processFile(Source source, Templates sheet, File outputFile, ArrayList parameterList, String initialMode) throws TransformerException(Code)
Process a single file using a supplied stylesheet
Parameters:
  source - The source XML document to be transformed
Parameters:
  sheet - The Templates object identifying the stylesheet
Parameters:
  outputFile - The output file to contain the results of thetransformation
Parameters:
  parameterList - List of parameters to be supplied to thetransformation
Parameters:
  initialMode - Initial mode for executing the transformation
throws:
  net.sf.saxon.trans.XPathException - If the transformation fails



processFileAssoc
public void processFileAssoc(Source sourceInput, String localName, File outputFile, ArrayList parameterList, String initialMode) throws TransformerException(Code)
Process a single source file using its associated stylesheet(s)
Parameters:
  sourceInput - Identifies the source file to be transformed
Parameters:
  localName - The local name of the file within thedirectory, excluding the file type suffix
Parameters:
  outputFile - The output file to contain the results of thetransformation
Parameters:
  parameterList - List of parameters to be supplied to thetransformation
Parameters:
  initialMode - Initial mode for executing the transformation
throws:
  XPathException - If the transformation fails



quit
protected static void quit(String message, int code)(Code)
Exit with a message
Parameters:
  message - The message to be output
Parameters:
  code - The result code to be returned to the operatingsystem shell



setFactoryConfiguration
protected void setFactoryConfiguration()(Code)
Set the configuration in the TransformerFactory. This is designed to be overridden in a subclass



setPOption
public void setPOption(Configuration config)(Code)



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.