org.apache.commons.scxml.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 » Library » Apache commons scxml 0.6 src » org.apache.commons.scxml.model 
org.apache.commons.scxml.model

A collection of classes needed to model SCXML documents.

Java Source File NameTypeComment
Action.javaClass An abstract base class for executable elements in SCXML, such as <assign>, <log> etc.
ActionsTest.javaClass Unit tests org.apache.commons.scxml.model.Assign .
ActionTest.javaClass
Assign.javaClass The class in this SCXML object model that corresponds to the <assign> SCXML element.
AssignTest.javaClass Unit tests for <assign> element, particular the "src" attribute.
Cancel.javaClass The class in this SCXML object model that corresponds to the <cancel> SCXML element.
CustomAction.javaClass A custom action is simply a tuple consisting of a namespace URI, the local name for the custom action and the corresponding Action class.
CustomActionTest.javaClass
Data.javaClass The class in this SCXML object model that corresponds to the SCXML <data> child element of the <datamodel> element.
Datamodel.javaClass The class in this SCXML object model that corresponds to the SCXML <datamodel> element.
DatamodelTest.javaClass Unit tests org.apache.commons.scxml.SCXMLExecutor .
Else.javaClass The class in this SCXML object model that corresponds to the <else> SCXML element.
ElseIf.javaClass The class in this SCXML object model that corresponds to the <elseif> SCXML element.
Executable.javaClass An abstract base class for containers of executable elements in SCXML, such as <onentry> and <onexit>.
Exit.javaClass The class in this SCXML object model that corresponds to the <exit> SCXML element, which is a shorthand notation for an empty anonymous final state.
ExternalContent.javaInterface An ExternalContent implementation represents an element in the SCXML document that may contain "body content", which means an arbitrary number of child nodes belonging to external namespaces.
Finalize.javaClass The class in this SCXML object model that corresponds to the <finalize> SCXML element.
Hello.javaClass Our custom "hello world" action.
History.javaClass The class in this SCXML object model that corresponds to the <history> SCXML pseudo state element.
HistoryTest.javaClass
If.javaClass The class in this SCXML object model that corresponds to the <if> SCXML element, which serves as a container for conditionally executed elements.
Initial.javaClass The class in this SCXML object model that corresponds to the <initial> SCXML pseudo state element.
Invoke.javaClass The class in this SCXML object model that corresponds to the <invoke> SCXML element.
Log.javaClass The class in this SCXML object model that corresponds to the <log> SCXML element.
ModelException.javaClass Exception that is thrown when the SCXML model supplied to the executor has a fatal flaw that prevents the executor from further interpreting the the model.
ModelTestSuite.javaClass Test suite for SCXML model package.
NamespacePrefixesHolder.javaInterface A NamespacePrefixesHolder is an entity that retains namespace prefix information from the document for deferred XPath evaluation.
OnEntry.javaClass The class in this SCXML object model that corresponds to the <onentry> SCXML element, which is an optional property holding executable content to be run upon entering the parent State or Parallel.
OnExit.javaClass The class in this SCXML object model that corresponds to the <onexit> SCXML element, which is an optional property holding executable content to be run upon exiting the parent State or Parallel.
Parallel.javaClass The class in this SCXML object model that corresponds to the <parallel> SCXML element, which is a wrapper element to encapsulate parallel state machines.
Param.javaClass The class in this SCXML object model that corresponds to the <param> SCXML element.
Path.javaClass A helper class for this SCXML implementation that represents the path taken to transition from one TransitionTarget to another in the SCXML document.
PathResolverHolder.javaInterface A PathResolverHolder is an entity that holds a PathResolver .
PathTest.javaClass
SCXML.javaClass The class in this SCXML object model that corresponds to the <scxml> root element, and serves as the "document root".
Send.javaClass The class in this SCXML object model that corresponds to the <send> SCXML element.
State.javaClass The class in this SCXML object model that corresponds to the <state> SCXML element.
StatelessModelTest.javaClass Unit tests org.apache.commons.scxml.SCXMLExecutor .
StateTest.javaClass
Transition.javaClass The class in this SCXML object model that corresponds to the <transition> SCXML element.
TransitionTarget.javaClass An abstract base class for elements in SCXML that can serve as a <target> for a <transition>, such as State or Parallel.
TransitionTest.javaClass
Var.javaClass The class in this SCXML object model that corresponds to the <var> SCXML element.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.