Source Code Cross Referenced for PropertyDescriptor.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:         * PropertyDescriptor object instance interface.
005:         */
006:        public interface PropertyDescriptor extends
007:                com.metaboss.sdlctools.models.metabossmodel.ModelElement {
008:            /**
009:             * @return 
010:             */
011:            public java.util.Collection getCombinedPropertyDescriptors();
012:
013:            /**
014:             * @param pName 
015:             * @return 
016:             */
017:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor findPropertyDescriptor(
018:                    java.lang.String pName);
019:
020:            /**
021:             * @param pName 
022:             * @return 
023:             */
024:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor getPropertyDescriptor(
025:                    java.lang.String pName);
026:
027:            /**
028:             * Creates Property described by this descriptor. 
029:             * @param pValue May be null if no value should be set
030:             * @param pArrayIndex Must be not null for array properties. Ignored for non-array 
031:             * properties
032:             * @return Creates Property described by this descriptor. 
033:             */
034:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.Property createProperty(
035:                    java.lang.String pValue, java.lang.Integer pArrayIndex);
036:
037:            /**
038:             * Returns the value of attribute isArray.
039:             * @return Value of attribute isArray.
040:             */
041:            public boolean isArray();
042:
043:            /**
044:             * Sets the value of isArray attribute. See {@link #isArray} for description 
045:             * on the attribute.
046:             * @param newValue New value to be set.
047:             */
048:            public void setArray(boolean newValue);
049:
050:            /**
051:             * Returns the value of attribute isContainer.
052:             * @return Value of attribute isContainer.
053:             */
054:            public boolean isContainer();
055:
056:            /**
057:             * Sets the value of isContainer attribute. See {@link #isContainer} for description 
058:             * on the attribute.
059:             * @param newValue New value to be set.
060:             */
061:            public void setContainer(boolean newValue);
062:
063:            /**
064:             * Returns the value of reference properties.
065:             * @return Value of reference properties.
066:             */
067:            public java.util.Collection getProperties();
068:
069:            /**
070:             * Returns the value of reference parentTypetemplate.
071:             * @return Value of reference parentTypetemplate.
072:             */
073:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.TypeTemplate getParentTypetemplate();
074:
075:            /**
076:             * Sets the value of reference parentTypetemplate. See {@link #getParentTypetemplate} 
077:             * for description on the reference.
078:             * @param newValue New value to be set.
079:             */
080:            public void setParentTypetemplate(
081:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.TypeTemplate newValue);
082:
083:            /**
084:             * Returns the value of reference parentDescriptor.
085:             * @return Value of reference parentDescriptor.
086:             */
087:            public com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor getParentDescriptor();
088:
089:            /**
090:             * Sets the value of reference parentDescriptor. See {@link #getParentDescriptor} 
091:             * for description on the reference.
092:             * @param newValue New value to be set.
093:             */
094:            public void setParentDescriptor(
095:                    com.metaboss.sdlctools.models.metabossmodel.datadictionarymodel.PropertyDescriptor newValue);
096:
097:            /**
098:             * Returns the value of reference subPropertyDescriptors.
099:             * @return Value of reference subPropertyDescriptors.
100:             */
101:            public java.util.Collection getSubPropertyDescriptors();
102:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.