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


001:        package com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel;
002:
003:        /**
004:         * Property object instance interface.
005:         */
006:        public interface Property extends
007:                com.metaboss.sdlctools.models.metabossmodel.ModelElement {
008:            /**
009:             * @return 
010:             */
011:            public java.lang.String getKey();
012:
013:            /**
014:             * @return 
015:             */
016:            public java.util.Collection getCombinedProperties();
017:
018:            /**
019:             * @param pPropertyKey 
020:             * @return 
021:             */
022:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.Property findPropertyByKey(
023:                    java.lang.String pPropertyKey);
024:
025:            /**
026:             * @param pPropertyKey 
027:             * @return 
028:             */
029:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.Property getPropertyByKey(
030:                    java.lang.String pPropertyKey);
031:
032:            /**
033:             * Returns read-only collection of properties defined under this property 
034:             * and described by given descriptor
035:             * @param pPropertyDescriptor 
036:             * @return Returns read-only collection of properties defined under this property 
037:             * and described by given descriptor
038:             */
039:            public java.util.Collection getPropertiesByDescriptor(
040:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor pPropertyDescriptor);
041:
042:            /**
043:             * Calculates the array index of this particular property. This value is only 
044:             * applicable to the array Properties. Note that the index this operation 
045:             * returns starts from one.
046:             * @return Calculates the array index of this particular property. This value 
047:             * is only applicable to the array Properties. Note that the index this operation 
048:             * returns starts from one.
049:             */
050:            public java.lang.Integer getArrayIndex();
051:
052:            /**
053:             * Returns the value of attribute value.
054:             * @return Value of attribute value.
055:             */
056:            public java.lang.String getValue();
057:
058:            /**
059:             * Sets the value of value attribute. See {@link #getValue} for description 
060:             * on the attribute.
061:             * @param newValue New value to be set.
062:             */
063:            public void setValue(java.lang.String newValue);
064:
065:            /**
066:             * Returns the value of reference descriptor.
067:             * @return Value of reference descriptor.
068:             */
069:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor getDescriptor();
070:
071:            /**
072:             * Sets the value of reference descriptor. See {@link #getDescriptor} for 
073:             * description on the reference.
074:             * @param newValue New value to be set.
075:             */
076:            public void setDescriptor(
077:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor newValue);
078:
079:            /**
080:             * Returns the value of reference parentProperty.
081:             * @return Value of reference parentProperty.
082:             */
083:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.Property getParentProperty();
084:
085:            /**
086:             * Sets the value of reference parentProperty. See {@link #getParentProperty} 
087:             * for description on the reference.
088:             * @param newValue New value to be set.
089:             */
090:            public void setParentProperty(
091:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.Property newValue);
092:
093:            /**
094:             * Returns the value of reference subProperties.
095:             * @return Value of reference subProperties.
096:             */
097:            public java.util.List getSubProperties();
098:
099:            /**
100:             * Returns the value of reference dataType.
101:             * @return Value of reference dataType.
102:             */
103:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType getDataType();
104:
105:            /**
106:             * Sets the value of reference dataType. See {@link #getDataType} for description 
107:             * on the reference.
108:             * @param newValue New value to be set.
109:             */
110:            public void setDataType(
111:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.DataType newValue);
112:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.