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


001:        // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
002:        // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
003:        // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
004:        // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
005:        // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
006:        // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
007:        // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
008:        // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
009:        // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
010:        // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
011:        // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
012:        // POSSIBILITY OF SUCH DAMAGE.
013:        //
014:        // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
015:        package com.metaboss.sdlctools.services.codegenerationstylesheet;
016:
017:        /** This structure contains the stylesheet (set of names) pertained to the particular report output element */
018:        public final class STReportOutputElementStylesheet {
019:            private String mReportOutputElementRef = null;
020:            private String mDomainInterfaceName = null;
021:            private String mDomainImplementationName = null;
022:            private String mDomainPackageName = null;
023:            private String mDomainInterfaceFullName = null;
024:            private String mStorageRecordName = null;
025:            private String mStoragePackageName = null;
026:            private String mStorageRecordFullName = null;
027:            private String mStorageRecordProxyName = null;
028:            private String mStorageRecordProxyTranslatorName = null;
029:
030:            /** Getter for the unique identifier of the corresponding report output element */
031:            public String getReportOutputElementRef() {
032:                return mReportOutputElementRef;
033:            }
034:
035:            /** Getter for the name of the interface representing this report output element */
036:            public String getDomainInterfaceName() {
037:                return mDomainInterfaceName;
038:            }
039:
040:            /** Getter for the name of the implementation class implementing domain interface */
041:            public String getDomainImplementationName() {
042:                return mDomainImplementationName;
043:            }
044:
045:            /** Getter for the name of the package where domain interface representing this report output element is located */
046:            public String getDomainPackageName() {
047:                return mDomainPackageName;
048:            }
049:
050:            /** Getter for the full name of the interface representing this report output element */
051:            public String getDomainInterfaceFullName() {
052:                return mDomainInterfaceFullName;
053:            }
054:
055:            /** Getter for the name of the storage record for this output level */
056:            public String getStorageRecordName() {
057:                return mStorageRecordName;
058:            }
059:
060:            /** Getter for the name of the storage record proxy for this output level */
061:            public String getStorageRecordProxyName() {
062:                return mStorageRecordProxyName;
063:            }
064:
065:            /** Getter for the name of the storage record proxy translator for this output level */
066:            public String getStorageRecordProxyTranslatorName() {
067:                return mStorageRecordProxyTranslatorName;
068:            }
069:
070:            /** Getter for the name of the package where storage service for this report element is located */
071:            public String getStoragePackageName() {
072:                return mStoragePackageName;
073:            }
074:
075:            /** Getter for the full name of the storage record for this report output element */
076:            public String getStorageRecordFullName() {
077:                return mStorageRecordFullName;
078:            }
079:
080:            /** Setter for the unique identifier of the corresponding report output element */
081:            public void setReportOutputElementRef(String pReportOutputElementRef) {
082:                mReportOutputElementRef = pReportOutputElementRef;
083:            }
084:
085:            /** Setter for the name of the interface representing this report output element */
086:            public void setDomainInterfaceName(String pDomainInterfaceName) {
087:                mDomainInterfaceName = pDomainInterfaceName;
088:            }
089:
090:            /** Setter for the name of the implementation class implementing domain interface */
091:            public void setDomainImplementationName(
092:                    String pDomainImplementationName) {
093:                mDomainImplementationName = pDomainImplementationName;
094:            }
095:
096:            /** Setter for the name of the package where domain interface representing this report output element is located */
097:            public void setDomainPackageName(String pDomainPackageName) {
098:                mDomainPackageName = pDomainPackageName;
099:            }
100:
101:            /** SGetter for the full name of the interface representing this report output element */
102:            public void setDomainInterfaceFullName(
103:                    String pDomainInterfaceFullName) {
104:                mDomainInterfaceFullName = pDomainInterfaceFullName;
105:            }
106:
107:            /** Setter for the name of the storage record  for this output level */
108:            public void setStorageRecordName(String pStorageRecordName) {
109:                mStorageRecordName = pStorageRecordName;
110:            }
111:
112:            /** Setter for the name of the storage record proxy for this output level */
113:            public void setStorageRecordProxyName(String pStorageRecordProxyName) {
114:                mStorageRecordProxyName = pStorageRecordProxyName;
115:            }
116:
117:            /** Setter for the name of the storage record proxy translator for this output level */
118:            public void setStorageRecordProxyTranslatorName(
119:                    String pStorageRecordProxyTranslatorName) {
120:                mStorageRecordProxyTranslatorName = pStorageRecordProxyTranslatorName;
121:            }
122:
123:            /** Setter for the name of the package where storage service interface for this report output element is located */
124:            public void setStoragePackageName(String pStoragePackageName) {
125:                mStoragePackageName = pStoragePackageName;
126:            }
127:
128:            /** Setter for the full name of the storage record for this report output element */
129:            public void setStorageRecordFullName(String pStorageRecordFullName) {
130:                mStorageRecordFullName = pStorageRecordFullName;
131:            }
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.