Java Doc for BpelEntity.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.BpelEntity

All known Subclasses:   org.netbeans.modules.bpel.model.impl.SourceContainerImpl,  org.netbeans.modules.bpel.model.impl.BpelEntityImpl,
BpelEntity
public interface BpelEntity extends DocumentComponent<BpelEntity>(Code)
Marker interface. Any element in OM will implement this interface. One should use for keep reference to OM model element use BpelEement instead of Object.
author:
   ads


Field Summary
 StringBUSINESS_PROCESS_1_1_NS_URI
    
 StringBUSINESS_PROCESS_DRAFT_NS_URI
    
 StringBUSINESS_PROCESS_NS_URI
     Namespace uri for current BPEL spec.


Method Summary
 voidaccept(SimpleBpelModelVisitor visitor)
     This method will apply visitor to each element in model starting from this.
 voidaccept(BpelModelVisitor visitor)
     This method will apply visitor to this OM element.
 BpelEntitycopy(HashMap<UniqueId, UniqueId> uniqueMap)
     Creates deep copy of OM element.
 BpelEntitycut()
     Returns element that is copy of this element.
 BpelModelgetBpelModel()
     Accessor to model.
 ObjectgetCookie(Object key)
     Returns stored object with given key that was previusly put into this entity via setCookie.
 Class<? extends BpelEntity>getElementType()
    
 ExNamespaceContextgetNamespaceContext()
     Returns ExNamespaceContext context for this element.
 BpelContainergetParent()
    
 UniqueIdgetUID()
     Returns unique id of element in OM.
 voidremoveCookie(Object key)
     Removes object with given key from cookies.
 voidsetCookie(Object key, Object obj)
     Set cookie for this entity.

Field Detail
BUSINESS_PROCESS_1_1_NS_URI
String BUSINESS_PROCESS_1_1_NS_URI(Code)



BUSINESS_PROCESS_DRAFT_NS_URI
String BUSINESS_PROCESS_DRAFT_NS_URI(Code)



BUSINESS_PROCESS_NS_URI
String BUSINESS_PROCESS_NS_URI(Code)
Namespace uri for current BPEL spec.





Method Detail
accept
void accept(SimpleBpelModelVisitor visitor)(Code)
This method will apply visitor to each element in model starting from this. visitor should not know nothing about OM tree structure. It means it should not perfrom navigation through children in "visit" method. Om element "accept" method will apply visitor to any child itself.
Parameters:
  visitor - visitor for OM.



accept
void accept(BpelModelVisitor visitor)(Code)
This method will apply visitor to this OM element. visitor should perform navigation in tree ( if it wants by itself ).
Parameters:
  visitor - visitor for OM.



copy
BpelEntity copy(HashMap<UniqueId, UniqueId> uniqueMap)(Code)
Creates deep copy of OM element. uniqueMap is used for storing correspondance between this element and return element. Uid of this copied element ( end each deep child ) will be null. After attaching element to OM it will have different uid . Cookies are not copied for copy element ( and any child ).
Parameters:
  uniqueMap - map that will be used for filling unique ids. copy of this entity.



cut
BpelEntity cut()(Code)
Returns element that is copy of this element. This element and all its children will have the same unique ids. Original element ( this ) is removed from tree. Uid of this element ( and each child ) will be null. After pasting element into OM pasted element ( and its children respectively ) will have the same uid as original. After pasting element will be invalid and if you will use it for new pasting then it will be the same as pasting of copy ( see copy method ). All cookies from original element will be saved for cut element ( and any child ). copy of this entity that could be used for inserting in OM.



getBpelModel
BpelModel getBpelModel()(Code)
Accessor to model. It should be used for getting reference to model instead of acccessing to root process ( process could be got from Model ). Note that this method returns always not null reference to model, even if component is deleted. It differs from getModel() method which return null in this case. bpel OM model.



getCookie
Object getCookie(Object key)(Code)
Returns stored object with given key that was previusly put into this entity via setCookie.
Parameters:
  key - key for cookie retrieveing object that stored as cookie identified by key.



getElementType
Class<? extends BpelEntity> getElementType()(Code)
interface in OM that represented by this entity.



getNamespaceContext
ExNamespaceContext getNamespaceContext()(Code)
Returns ExNamespaceContext context for this element. This context can be used for retrieving prefixes by uri, uri by prefixes. namespace context object.



getParent
BpelContainer getParent()(Code)



getUID
UniqueId getUID()(Code)
Returns unique id of element in OM. This uid will be null if element was created via factory ( BpelElementBuilder class ). Element could have not null uid even if it not in OM. This will be in case when it was copied or cut. unique id of this entity.



removeCookie
void removeCookie(Object key)(Code)
Removes object with given key from cookies.
Parameters:
  key - key of object that we want to remove from cookies.



setCookie
void setCookie(Object key, Object obj)(Code)
Set cookie for this entity.
Parameters:
  key - key for cookie.
Parameters:
  obj - any object that we want to store here.



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