org.netbeans.modules.xslt.model

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 » IDE Netbeans » xml » org.netbeans.modules.xslt.model 
org.netbeans.modules.xslt.model
Java Source File NameTypeComment
AnalyzeString.javaInterface
ApplyImports.javaInterface
ApplyTemplateChild.javaInterface This is base type for child elements in ApplyTemplates container. Type specialization ( hierarchical child ) should be used.
ApplyTemplates.javaInterface
AsSpec.javaInterface "as" attribute holder.
Attribute.javaInterface
 <xs:element name="attribute" substitutionGroup="xsl:instruction">
 <xs:complexType>
 <xs:complexContent mixed="true">
 <xs:extension base="xsl:sequence-constructor">
 <xs:attribute name="name" type="xsl:avt" use="required"/>
 <xs:attribute name="namespace" type="xsl:avt"/>
 <xs:attribute name="select" type="xsl:expression"/>
 <xs:attribute name="separator" type="xsl:avt"/>   
 <xs:attribute name="type" type="xsl:QName"/>
 <xs:attribute name="validation" type="xsl:validation-type"/>
 </xs:extension>
 </xs:complexContent>
 </xs:complexType>
 </xs:element>  
 
Attribute "name" here don't have QName type because it can be "template of attribute values". F.e.
AttributeSet.javaInterface
AttributeValueTemplate.javaInterface This interface represent attribute value template.
AttrValueTamplateHolder.javaInterface This interface represent entity that has "name" attrubute with type AttributeValueTemplate.
CallTemplate.javaInterface
CharacterMap.javaInterface
Choose.javaInterface
CollationSpec.javaInterface "collation" attribute holder.
Comment.javaInterface
ContentElement.javaInterface
Copy.javaInterface
CopyNamespacesSpec.javaInterface "copy-namespaces" attribute holder class.
CopyOf.javaInterface
DecimalFormat.javaInterface
Declaration.javaInterface
DisableOutputExcapingSpec.javaInterface "disable-output-escaping" attribute holder.
Document.javaInterface
Element.javaInterface
ElementsSpec.javaInterface "elements" attribute holder.
Fallback.javaInterface
ForEach.javaInterface
ForEachGroup.javaInterface
FormatSpec.javaInterface
Function.javaInterface
If.javaInterface
Import.javaInterface
ImportSchema.javaInterface
Include.javaInterface
InheritNamespacesSpec.javaInterface "inherit-namespaces" attribute holder.
Instruction.javaInterface The main categories of XSLT instruction are as follows:

  • instructions that create new nodes: xsl:document, xsl:element, xsl:attribute, xsl:processing-instruction, xsl:comment, xsl:value-of, xsl:text, xsl:namespace;

  • an instruction that returns an arbitrary sequence by evaluating an XPath expression: xsl:sequence;

  • instructions that cause conditional or repeated evaluation of nested instructions: xsl:if, xsl:choose, xsl:for-each, xsl:for-each-group;

  • instructions that invoke templates: xsl:apply-templates, xsl:apply-imports, xsl:call-template, xsl:next-match;

  • Instructions that declare variables: xsl:variable, xsl:param;

  • other specialized instructions: xsl:number, xsl:analyze-string, xsl:message, xsl:result-document.

InvalidAttributeValueException.javaClass
Key.javaInterface
LangSpec.javaInterface
LiteralResultElement.javaInterface This is element in xsl document that is not XSL instruction and not extension.
MatchingSubstring.javaInterface
MatchSpec.javaInterface
Message.javaInterface
Namespace.javaInterface
NamespaceAlias.javaInterface
NamespaceSpec.javaInterface "namespace" attribute holder.
NextMatch.javaInterface
NextMatchChild.javaInterface This is supertype for WithParam and Fallback. It represent children for NextMatch element. Actual type should be determined via casting to special type.
NonMatchingSubstring.javaInterface
Number.javaInterface
Otherwise.javaInterface
Output.javaInterface
OutputCharacter.javaInterface
Param.javaInterface
ParamContainer.javaInterface Container for "param" elements.
PerformSort.javaInterface
PreserveSpace.javaInterface
ProcessingInstruction.javaInterface
QualifiedNameable.javaInterface
ReferenceableXslComponent.javaInterface
ResultDocument.javaInterface
SelectSpec.javaInterface "select" attribute holder.
SeparatorSpec.javaInterface
Sequence.javaInterface
SequenceConstructor.javaInterface This is not equivalent of sequence constructor term in XSLT text spec. Sequence constructor XSLT spec term is child construct for some XSLT instruction.
SequenceElement.javaInterface This interface represent elements that are children for SequenceConstructor. This is common type for such elements.
Sort.javaInterface
SortContainer.javaInterface
StripSpace.javaInterface
Stylesheet.javaInterface
 <xs:element name="stylesheet" substitutionGroup="xsl:transform"/>
 <xs:element name="transform">
 <xs:complexType>
 <xs:complexContent>
 <xs:extension base="xsl:transform-element-base-type">
 <xs:sequence>
 <xs:element ref="xsl:import" minOccurs="0" maxOccurs="unbounded"/>
 <xs:choice minOccurs="0" maxOccurs="unbounded">
 <xs:element ref="xsl:declaration"/>
 <xs:element ref="xsl:variable"/>
 <xs:element ref="xsl:param"/>              
 <xs:any namespace="##other" processContents="lax"/> 
 </xs:choice>
 </xs:sequence>
 <xs:attribute name="id" type="xs:ID"/>
 <xs:attribute name="default-validation" type="xsl:validation-strip-or-preserve" default="strip"/>
 <xs:attribute name="input-type-annotations" type="xsl:input-type-annotations-type" default="unspecified"/>
 </xs:extension>
 </xs:complexContent>
 </xs:complexType>
 </xs:element>
 <xs:complexType name="generic-element-type" mixed="true">
 <xs:attribute name="default-collation" type="xsl:uri-list"/>
 <xs:attribute name="exclude-result-prefixes" type="xsl:prefix-list-or-all"/>
 <xs:attribute name="extension-element-prefixes" type="xsl:prefix-list"/>
 <xs:attribute name="use-when" type="xsl:expression"/>
 <xs:attribute name="xpath-default-namespace" type="xs:anyURI"/>
 <xs:anyAttribute namespace="##other" processContents="lax"/>
 </xs:complexType>
 
In reality transform is the same as stylesheet. So stylesheet object can have different tag names:
 stylesheet
 and
 transform.
 
There is no methods for accessing to Template, Include, etc.
StylesheetChild.javaInterface This is supertype for Declaration, Param and Variable classes. They could be mixed children of stylesheet.
Template.javaInterface
TestSpec.javaInterface "test" asttribute holder.
Text.javaInterface This is xsl:text element. Please note that this is not the same as TEXT DOM node . TEXT nodes in Xsl OM is maped to following sibling element if any.
TunnelSpec.javaInterface
TypeSpec.javaInterface "type" attribute holder.
UseAttributesSetsSpec.javaInterface "use-attribute-sets" attribute holder. Reference list could have more elements than quantity of items in attribute value.
UseCharacterMapsSpec.javaInterface
ValidationSpec.javaInterface "validation" attribute holder.
ValueOf.javaInterface
Variable.javaInterface
When.javaInterface
WithParam.javaInterface
WithParamContainer.javaInterface
XslComponent.javaInterface
XslComponentFactory.javaInterface Factory for Xsl components.
XslConstants.javaInterface This is storage for various constant values that cannot be expressed in enum terms.
XslModel.javaInterface This interface represents an instance of a xsl model.
XslModelReference.javaInterface "href" attribute holder.
XslReference.javaInterface
XslVisitor.javaInterface
XslVisitorAdapter.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.