Java Doc for Process.java in  » IDE-Netbeans » bpel » org » netbeans » modules » bpel » model » api » 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 » IDE Netbeans » bpel » org.netbeans.modules.bpel.model.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.modules.bpel.model.api.Process

Process
public interface Process extends JoinFailureSuppressor,NamedElement,BaseScope,ExpressionLanguageSpec,QueryLanguageSpec(Code)

Java class for tProcess complex type.

The following schema fragment specifies the expected content contained within this class.

 <xsd:complexType name="tProcess">
 <xsd:complexContent>
 <xsd:extension base="tExtensibleElements">
 <xsd:sequence>
 <xsd:element ref="extensions" minOccurs="0"/>
 <xsd:element ref="import" minOccurs="0" maxOccurs="unbounded"/>
 <xsd:element ref="partnerLinks" minOccurs="0"/>
 <xsd:element ref="messageExchanges" minOccurs="0"/>
 <xsd:element ref="variables" minOccurs="0"/>
 <xsd:element ref="correlationSets" minOccurs="0"/>
 <xsd:element ref="faultHandlers" minOccurs="0"/>
 <xsd:element ref="eventHandlers" minOccurs="0"/>
 <xsd:group ref="activity" minOccurs="1"/>
 </xsd:sequence>
 <xsd:attribute name="name" type="xsd:NCName" use="required"/>
 <xsd:attribute name="targetNamespace" type="xsd:anyURI" use="required"/>
 <xsd:attribute name="queryLanguage" type="xsd:anyURI" default="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"/>
 <xsd:attribute name="expressionLanguage" type="xsd:anyURI" default="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"/>
 <xsd:attribute name="suppressJoinFailure" type="tBoolean" default="no"/>
 <xsd:attribute name="exitOnStandardFault" type="tBoolean" default="no"/>
 </xsd:extension>
 </xsd:complexContent>
 </xsd:complexType>
 


Field Summary
 StringATOMIC
     atomic attribute's name.
 StringTARGET_NAMESPACE
     targetNamespace attribute name.


Method Summary
 voidaddImport(Import imp)
     Adds new import imp to this parent.
 ExtensionContainergetExtensionContainer()
     Gets the "extensions" entity child .
 ImportgetImport(int i)
    
Parameters:
  i - Index in children list.
 Import[]getImports()
    
 StringgetTargetNamespace()
     Gets the value of the targetNamespace property.
 voidinsertImport(Import imp, int i)
     Inserts new import imp at the i-th place.
 TBooleanisAtomic()
     Indicates if the process is atomic.
 voidremoveExpressionLanguage()
     Removes expressionLanguage attribute.
 voidremoveExtensionContainer()
     Removes "extensions" entity as children if it exists.
 voidremoveImport(int i)
     Removes i-th import from children list.
 voidsetAtomic(TBoolean value)
     Set atomic attribute.
 voidsetExtensionContainer(ExtensionContainer value)
     Sets the "extensions" entity child .
 voidsetImport(Import imp, int i)
     Replace i-th place impport with new import imp.
 voidsetImports(Import[] imports)
     Set new list of children of imports.
 voidsetTargetNamespace(String value)
     Sets the value of the targetNamespace property.
 intsizeOfImports()
    

Field Detail
ATOMIC
String ATOMIC(Code)
atomic attribute's name.



TARGET_NAMESPACE
String TARGET_NAMESPACE(Code)
targetNamespace attribute name.





Method Detail
addImport
void addImport(Import imp)(Code)
Adds new import imp to this parent.
Parameters:
  imp - New child for addition.



getExtensionContainer
ExtensionContainer getExtensionContainer()(Code)
Gets the "extensions" entity child . possible object is Extensions



getImport
Import getImport(int i)(Code)

Parameters:
  i - Index in children list. i-th child in imports array.



getImports
Import[] getImports()(Code)
Array of "import" children in this process.



getTargetNamespace
String getTargetNamespace()(Code)
Gets the value of the targetNamespace property. possible object is String



insertImport
void insertImport(Import imp, int i)(Code)
Inserts new import imp at the i-th place.
Parameters:
  imp - New child for addition.
Parameters:
  i - Index in children list.



isAtomic
TBoolean isAtomic()(Code)
Indicates if the process is atomic. It isn't an extension (not standard) attribute of the process. atomic=true - acknowledges Message(MEx) to its partner immediately after executing Receive activity. atomic=false - acknowledges Message(MEx) to its partner when the instance completes. the value of the atomic flag



removeExpressionLanguage
void removeExpressionLanguage()(Code)
Removes expressionLanguage attribute.



removeExtensionContainer
void removeExtensionContainer()(Code)
Removes "extensions" entity as children if it exists.



removeImport
void removeImport(int i)(Code)
Removes i-th import from children list.
Parameters:
  i - Index in children list.



setAtomic
void setAtomic(TBoolean value)(Code)
Set atomic attribute. See the description of the isAtomic() method.
Parameters:
  value -



setExtensionContainer
void setExtensionContainer(ExtensionContainer value)(Code)
Sets the "extensions" entity child .
Parameters:
  value - allowed object is Extensions



setImport
void setImport(Import imp, int i)(Code)
Replace i-th place impport with new import imp.
Parameters:
  imp - New child for setting.
Parameters:
  i - Index in children list.



setImports
void setImports(Import[] imports)(Code)
Set new list of children of imports.
Parameters:
  imports - New array of children.



setTargetNamespace
void setTargetNamespace(String value) throws VetoException(Code)
Sets the value of the targetNamespace property.
Parameters:
  value - allowed object is String
throws:
  VetoException - VetoExceptionwill be thrown if value if not acceptable astargetNamespace attribute here.



sizeOfImports
int sizeOfImports()(Code)
size of "imports" children.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.