Source Code Cross Referenced for Bpm4StrutsProfile.java in  » UML » AndroMDA-3.2 » org » andromda » cartridges » bpm4struts » 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 » AndroMDA 3.2 » org.andromda.cartridges.bpm4struts 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.andromda.cartridges.bpm4struts;
002:
003:        import org.andromda.core.profile.Profile;
004:
005:        /**
006:         * Contains the BPM4Struts profile.
007:         *
008:         * @author Wouter Zoons
009:         */
010:        public class Bpm4StrutsProfile {
011:            /**
012:             * The Profile instance from which we retrieve the mapped profile names.
013:             */
014:            private static final Profile profile = Profile.instance();
015:
016:            /* ----------------- Stereotypes -------------------- */
017:            public static final String STEREOTYPE_EXCEPTION = profile
018:                    .get("FRONT_END_EXCEPTION");
019:
020:            /* ----------------- Tagged Values -------------------- */
021:            public static final String TAGGEDVALUE_ACTION_TYPE = profile
022:                    .get("ACTION_TYPE");
023:            public static final String TAGGEDVALUE_ACTION_RESETTABLE = profile
024:                    .get("ACTION_RESETTABLE");
025:            public static final String TAGGEDVALUE_ACTION_SUCCESS_MESSAGE = profile
026:                    .get("ACTION_SUCCESS_MESSAGE");
027:            public static final String TAGGEDVALUE_ACTION_WARNING_MESSAGE = profile
028:                    .get("ACTION_WARNING_MESSAGE");
029:            public static final String TAGGEDVALUE_ACTION_FORM_SCOPE = profile
030:                    .get("ACTION_FORM_SCOPE");
031:            public static final String TAGGEDVALUE_ACTION_FORM_KEY = profile
032:                    .get("ACTION_FORM_KEY");
033:            public static final String TAGGEDVALUE_ACTION_TABLELINK = profile
034:                    .get("ACTION_TABLELINK");
035:            public static final String TAGGEDVALUE_INPUT_COLUMN_COUNT = profile
036:                    .get("INPUT_COLUMN_COUNT");
037:            public static final String TAGGEDVALUE_INPUT_ROW_COUNT = profile
038:                    .get("INPUT_ROW_COUNT");
039:            public static final String TAGGEDVALUE_INPUT_REQUIRED = profile
040:                    .get("INPUT_REQUIRED");
041:            public static final String TAGGEDVALUE_INPUT_READONLY = profile
042:                    .get("INPUT_READONLY");
043:            public static final String TAGGEDVALUE_INPUT_FORMAT = profile
044:                    .get("INPUT_FORMAT");
045:            public static final String TAGGEDVALUE_INPUT_TYPE = profile
046:                    .get("INPUT_TYPE");
047:            public static final String TAGGEDVALUE_INPUT_MULTIBOX = profile
048:                    .get("INPUT_MULTIBOX");
049:            public static final String TAGGEDVALUE_INPUT_RADIO = profile
050:                    .get("INPUT_RADIO");
051:            public static final String TAGGEDVALUE_INPUT_VALIDWHEN = profile
052:                    .get("INPUT_VALIDWHEN");
053:            public static final String TAGGEDVALUE_INPUT_VALIDATORS = profile
054:                    .get("INPUT_VALIDATORS");
055:            public static final String TAGGEDVALUE_INPUT_CALENDAR = profile
056:                    .get("INPUT_CALENDAR");
057:            public static final String TAGGEDVALUE_INPUT_RESET = profile
058:                    .get("INPUT_RESET");
059:            public static final String TAGGEDVALUE_TABLE_COLUMNS = profile
060:                    .get("TABLE_COLUMNS");
061:            public static final String TAGGEDVALUE_TABLE_MAXROWS = profile
062:                    .get("TABLE_MAXROWS");
063:            public static final String TAGGEDVALUE_TABLE_EXPORT = profile
064:                    .get("TABLE_EXPORT");
065:            public static final String TAGGEDVALUE_TABLE_SORTABLE = profile
066:                    .get("TABLE_SORTABLE");
067:            public static final String TAGGEDVALUE_TABLE_DECORATOR = profile
068:                    .get("TABLE_DECORATOR");
069:            public static final String TAGGEDVALUE_EXCEPTION_TYPE = profile
070:                    .get("EXCEPTION_TYPE");
071:            public static final String TAGGEDVALUE_ACTION_REDIRECT = profile
072:                    .get("ACTION_REDIRECT");
073:
074:            /* ----------------- Data Types -------------------- */
075:            public static final String CHARACTER_TYPE_NAME = profile
076:                    .get("CHARACTER_TYPE");
077:            public static final String BYTE_TYPE_NAME = profile
078:                    .get("BYTE_TYPE");
079:            public static final String SHORT_TYPE_NAME = profile
080:                    .get("SHORT_TYPE");
081:            public static final String INTEGER_TYPE_NAME = profile
082:                    .get("INTEGER_TYPE");
083:            public static final String LONG_TYPE_NAME = profile
084:                    .get("LONG_TYPE");
085:            public static final String FLOAT_TYPE_NAME = profile
086:                    .get("FLOAT_TYPE");
087:            public static final String DOUBLE_TYPE_NAME = profile
088:                    .get("DOUBLE_TYPE");
089:            public static final String URL_TYPE_NAME = profile.get("URL_TYPE");
090:            public static final String TIME_TYPE_NAME = profile
091:                    .get("TIME_TYPE");
092:
093:            /* ----------------- Default Values ------------------- */
094:            public static final String TAGGEDVALUE_INPUT_DEFAULT_REQUIRED = "true";
095:            public static final String TAGGEDVALUE_EXCEPTION_DEFAULT_TYPE = "java.lang.Exception";
096:            public static final String TAGGEDVALUE_ACTION_FORM_DEFAULT_KEY = "form";
097:            public static final String TAGGEDVALUE_ACTION_TYPE_HYPERLINK = "hyperlink";
098:            public static final String TAGGEDVALUE_ACTION_TYPE_FORM = "form";
099:            public static final String TAGGEDVALUE_ACTION_TYPE_IMAGE = "image";
100:            public static final String TAGGEDVALUE_ACTION_TYPE_TABLE = "table";
101:            public static final String TAGGEDVALUE_ACTION_DEFAULT_TYPE = TAGGEDVALUE_ACTION_TYPE_FORM;
102:            public static final String TAGGEDVALUE_INPUT_TYPE_TEXT = "text";
103:            public static final String TAGGEDVALUE_INPUT_TYPE_PLAINTEXT = "plaintext";
104:            public static final String TAGGEDVALUE_INPUT_TYPE_TEXTAREA = "textarea";
105:            public static final String TAGGEDVALUE_INPUT_TYPE_RADIO = "radio";
106:            public static final String TAGGEDVALUE_INPUT_TYPE_CHECKBOX = "checkbox";
107:            public static final String TAGGEDVALUE_INPUT_TYPE_HIDDEN = "hidden";
108:            public static final String TAGGEDVALUE_INPUT_TYPE_SELECT = "select";
109:            public static final String TAGGEDVALUE_INPUT_TYPE_PASSWORD = "password";
110:            public static final String TAGGEDVALUE_INPUT_TYPE_MULTIBOX = "multibox";
111:            public static final String TAGGEDVALUE_INPUT_TYPE_LINK = "link";
112:            public static final String TAGGEDVALUE_INPUT_TYPE_FILE = "file";
113:            public static final int TAGGEDVALUE_INPUT_TYPE_OPTION_DEFAULT_COUNT = 3;
114:            public static final int TAGGEDVALUE_TABLE_MAXROWS_DEFAULT_COUNT = 15;
115:            public static final boolean TAGGEDVALUE_TABLE_SORTABLE_DEFAULT_VALUE = true;
116:            public static final boolean TAGGEDVALUE_TABLE_EXPORTABLE_DEFAULT_VALUE = true;
117:
118:            private Bpm4StrutsProfile() {
119:            }
120:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.