org.apache.xalan.transformer

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 » xalan » org.apache.xalan.transformer 
org.apache.xalan.transformer
Xalan Transformer Package.

In charge of run-time transformations and the production of result trees.

{@link org.apache.xalan.transformer.TransformerImpl} implements the {@link javax.xml.transform.Transformer} interface, and is the core representation of the transformation execution.

For each node in the XML source, TransformerImpl uses the StylesheetRoot and underlying XSLT schema to determine which template to apply: one of the templates in the StylesheetRoot, a default template rule as specified in the XSLT spec, or none.

The Transformer works with {@link org.apache.xml.serializer.SerializationHandler} to forward the SAX-like events produced by the transformation to the appropriate output ContentHandler.

To the degree possible, the parsing of the XML source and application of the Templates object to that source are performed concurrently in separate threads. When necessary, the Transformer waits for the parse events that must be in place before a given template may be applied.

Java Source File NameTypeComment
ClonerToResultTree.javaClass Class used to clone a node, possibly including its children to a result tree.
Counter.javaClass A class that does incremental counting for support of xsl:number.
CountersTable.javaClass This is a table of counters, keyed by ElemNumber objects, each of which has a list of Counter objects.
DecimalToRoman.javaClass
KeyIterator.javaClass This class implements an optimized iterator for "key()" patterns, matching each node to the match attribute in one or more xsl:key declarations.
KeyManager.javaClass This class manages the key tables.
KeyRefIterator.javaClass This class filters nodes from a key iterator, according to whether or not the use value matches the ref value.
KeyTable.javaClass Table of element keys, keyed by document node.
MsgMgr.javaClass This class will manage error messages, warning messages, and other types of message events.
NodeSorter.javaClass This class can sort vectors of DOM nodes according to a select pattern.
NodeSortKey.javaClass Data structure for use by the NodeSorter class.
NumeratorFormatter.javaClass Converts enumerated numbers into strings, using the XSL conversion attributes.
QueuedEvents.javaClass This class acts as a base for ResultTreeHandler, and keeps queud stack events.
ResultNameSpace.javaClass A representation of a result namespace.
SerializerSwitcher.javaClass This is a helper class that decides if Xalan needs to switch serializers, based on the first output element.
StackGuard.javaClass Class to guard against recursion getting too deep.
TransformerClient.javaInterface A content handler can get a reference to a TransformState by implementing the TransformerClient interface.
TransformerHandlerImpl.javaClass A TransformerHandler listens for SAX ContentHandler parse events and transforms them to a Result.
TransformerIdentityImpl.javaClass This class implements an identity transformer for javax.xml.transform.sax.SAXTransformerFactory.newTransformerHandler and javax.xml.transform.TransformerFactory.newTransformer .
TransformerImpl.javaClass
TransformSnapshot.javaInterface This is an opaque interface that allows the transformer to return a "snapshot" of it's current state, which can later be restored.
TransformSnapshotImpl.javaClass This class holds a "snapshot" of it's current transformer state, which can later be restored. This only saves state which can change over the course of the side-effect-free (i.e.
TransformState.javaInterface This interface is meant to be used by a consumer of SAX2 events produced by Xalan, and enables the consumer to get information about the state of the transform.
TrAXFilter.javaClass
TreeWalker2Result.javaClass Handle a walk of a tree, but screen out attributes for the result tree.
XalanProperties.javaClass XalanProperties defines the features understood by Xalan.
XalanTransformState.javaClass Before the serializer merge, the TransformState interface was implemented by ResultTreeHandler.
XSLInfiniteLoopException.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.