Source Code Cross Referenced for ModelElement.java in  » UML » MetaBoss » com » metaboss » sdlctools » models » metabossmodel » 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 » UML » MetaBoss » com.metaboss.sdlctools.models.metabossmodel 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.metaboss.sdlctools.models.metabossmodel;
002:
003:        /**
004:         * ModelElement object instance interface.
005:         * <p>
006:         * The abstract superclass of every element in the MetaBoss model.
007:         * </p>
008:         */
009:        public interface ModelElement extends javax.jmi.reflect.RefObject {
010:            /**
011:             * @return 
012:             */
013:            public java.lang.String getRef();
014:
015:            /**
016:             * @param pAttachmentName 
017:             * @return 
018:             */
019:            public com.metaboss.sdlctools.models.metabossmodel.ModelElementAttachment getAttachment(
020:                    java.lang.String pAttachmentName);
021:
022:            /**
023:             * @param pAttachmentName 
024:             * @return 
025:             */
026:            public com.metaboss.sdlctools.models.metabossmodel.ModelElementAttachment findAttachment(
027:                    java.lang.String pAttachmentName);
028:
029:            /**
030:             * @return 
031:             */
032:            public java.util.Collection getContents();
033:
034:            /**
035:             * Returns all elements contained by this element at any depth of the containment 
036:             * tree. Excludes this element itself.
037:             * @return Returns all elements contained by this element at any depth of 
038:             * the containment tree. Excludes this element itself.
039:             */
040:            public java.util.Collection getCombinedContents();
041:
042:            /**
043:             * Returns read only collection of objects referenced by this one. This includes 
044:             * all kinds of references - singular and plural, containment etc.
045:             * @return Returns read only collection of objects referenced by this one. 
046:             * This includes all kinds of references - singular and plural, containment 
047:             * etc.
048:             */
049:            public java.util.Collection getReferencedElements();
050:
051:            /**
052:             * Checks if this element is contained at any depth by the given element and 
053:             * returns true if it is contained.
054:             * @param pContainerElement 
055:             * @return Checks if this element is contained at any depth by the given element 
056:             * and returns true if it is contained.
057:             */
058:            public boolean isContainedWithin(
059:                    com.metaboss.sdlctools.models.metabossmodel.ModelElement pContainerElement);
060:
061:            /**
062:             * Tests if given ModelElement can be directly or indirectly owned by this 
063:             * ModelElement. Returns true if this ModelElement itself or any of the ModelElements 
064:             * it owns (at any depth of hierarchy)  can be an owner of the given ModelElement.
065:             * @param pModelElement 
066:             * @return Tests if given ModelElement can be directly or indirectly owned 
067:             * by this ModelElement. Returns true if this ModelElement itself or any of 
068:             * the ModelElements it owns (at any depth of hierarchy)  can be an owner 
069:             * of the given ModelElement.
070:             */
071:            public boolean mayContainWithin(
072:                    com.metaboss.sdlctools.models.metabossmodel.ModelElement pModelElement);
073:
074:            /**
075:             * Returns true if this ModelElement is managed by model assistant and therefore 
076:             * is derived from other parts of the model.
077:             * @return Returns true if this ModelElement is managed by model assistant 
078:             * and therefore is derived from other parts of the model.
079:             */
080:            public boolean isDerived();
081:
082:            /**
083:             * Tests if given ModelElement can be directly owned by this ModelElement. 
084:             * Returns true if this ModelElement can directly own given ModelElement 
085:             * @param pModelElement 
086:             * @return Tests if given ModelElement can be directly owned by this ModelElement. 
087:             * Returns true if this ModelElement can directly own given ModelElement 
088:             */
089:            public boolean mayContain(
090:                    com.metaboss.sdlctools.models.metabossmodel.ModelElement pModelElement);
091:
092:            /**
093:             * Returns the value of attribute Name.
094:             * @return Value of attribute Name.
095:             */
096:            public java.lang.String getName();
097:
098:            /**
099:             * Sets the value of Name attribute. See {@link #getName} for description 
100:             * on the attribute.
101:             * @param newValue New value to be set.
102:             */
103:            public void setName(java.lang.String newValue);
104:
105:            /**
106:             * Returns the value of attribute Description.
107:             * @return Value of attribute Description.
108:             */
109:            public java.lang.String getDescription();
110:
111:            /**
112:             * Sets the value of Description attribute. See {@link #getDescription} for 
113:             * description on the attribute.
114:             * @param newValue New value to be set.
115:             */
116:            public void setDescription(java.lang.String newValue);
117:
118:            /**
119:             * Returns the value of attribute OwnerIdentifier.
120:             * Optional identifier of the party who is responsible for the creation,deletion  
121:             * and validity of this model element. At the moment used to resolve conflicts 
122:             * between automatic model assistants.   At the moment always empty for the 
123:             * objects created by humans.
124:             * @return Value of attribute OwnerIdentifier.
125:             */
126:            public java.lang.String getOwnerIdentifier();
127:
128:            /**
129:             * Sets the value of OwnerIdentifier attribute. See {@link #getOwnerIdentifier} 
130:             * for description on the attribute.
131:             * @param newValue New value to be set.
132:             */
133:            public void setOwnerIdentifier(java.lang.String newValue);
134:
135:            /**
136:             * Returns the value of reference tags.
137:             * @return Value of reference tags.
138:             */
139:            public java.util.Collection getTags();
140:
141:            /**
142:             * Returns the value of reference attachments.
143:             * @return Value of reference attachments.
144:             */
145:            public java.util.Collection getAttachments();
146:
147:            /**
148:             * Returns the value of reference diagramModelElements.
149:             * @return Value of reference diagramModelElements.
150:             */
151:            public java.util.Collection getDiagramModelElements();
152:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.