Source Code Cross Referenced for Constants.java in  » J2EE » enhydra-IDE-plugin » org » enhydra » kelp » common » 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 » J2EE » enhydra IDE plugin » org.enhydra.kelp.common 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Enhydra Java Application Server Project
03:         *
04:         * The contents of this file are subject to the Enhydra Public License
05:         * Version 1.1 (the "License"); you may not use this file except in
06:         * compliance with the License. You may obtain a copy of the License on
07:         * the Enhydra web site ( http://www.enhydra.org/ ).
08:         *
09:         * Software distributed under the License is distributed on an "AS IS"
10:         * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11:         * the License for the specific terms governing rights and limitations
12:         * under the License.
13:         *
14:         * The Initial Developer of the Enhydra Application Server is Lutris
15:         * Technologies, Inc. The Enhydra Application Server and portions created
16:         * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17:         * All Rights Reserved.
18:         *
19:         * Contributor(s):
20:         *
21:         */
22:        package org.enhydra.kelp.common;
23:
24:        // Common constants.
25:        public interface Constants {
26:
27:            // strings not to be resourced
28:            public static final String TYPE_CHTML = "chtml";
29:            public static final String TYPE_CLASS = "class";
30:            public static final String TYPE_CONF = "conf";
31:            public static final String TYPE_IN = "in";
32:            public static final String TYPE_JAR = "jar";
33:            public static final String TYPE_HTM = "htm";
34:            public static final String TYPE_HTML = "html";
35:            public static final String TYPE_JAVA = "java";
36:            public static final String TYPE_MK = "mk";
37:            public static final String TYPE_TMP = "tmp";
38:            public static final String TYPE_TXT = "txt";
39:            public static final String TYPE_WAR = "war";
40:            public static final String TYPE_WML = "wml";
41:            public static final String TYPE_XMLC = "xmlc";
42:            public static final String TYPE_XHTML = "xhtml";
43:
44:            //
45:            public static final String DIR_CLASSES = "classes";
46:            public static final String DIR_CONF = "conf";
47:            public static final String DIR_CONTENT = "content";
48:            public static final String DIR_INPUT = "input";
49:            public static final String DIR_GEN_SOURCE = "Generated Source";
50:            public static final String DIR_LIB = "lib";
51:            public static final String DIR_OUTPUT = "output";
52:            public static final String DIR_RESOURCES = "resources";
53:            public static final String DIR_SRC = "src";
54:
55:            //
56:            public static final String FILE_BOOT_JAR = "Boot.jar";
57:            public static final String FILE_ENHYDRA_JAR = "enhydra.jar";
58:            public static final String FILE_XMLC_JAR = "xmlc.jar";
59:            public static final String FILE_TOOLBOX_JAR = "toolbox.jar";
60:            public static final String FILE_README = "readme.html";
61:            public static final String FILE_EJB_JAR_XML = "ejb-jar.xml";
62:            public static final String FILE_KERNEL_CONF = "kernel.conf";
63:            public static final String FILE_CONFIG_MK = "config.mk";
64:            public static final String FILE_MAKEFILE = "makefile";
65:            public static final String FILE_MULTISERVER_CONF = "multiserver.conf";
66:            public static final String FILE_BOOTSTRAP_CONF = "bootstrap.conf";
67:            public static final String FILE_BOOTSTRAP4_CONF = "bootstrap4.conf";
68:            public static final String FILE_KELP_TXT = "kelp.txt";
69:            public static final String FILE_WEB_XML = "web.xml";
70:            public static final String FILE_ENHYDRA_SERVICE_XML = "enhydra-service.xml";
71:            public static final String FILE_JAVA_POLICY = "java.policy";
72:            public static final String FILE_SERVLET_CONF = "servlet.conf";
73:            public static final String FILE_START_SERVER = "StartServer.java";
74:
75:            //
76:            public static final String JDK11 = "1.1";
77:            public static final String JDK12 = "1.2";
78:            public static final String JDK13 = "1.3";
79:            public static final String JAVA_VERSION = "java.version";
80:
81:            //
82:            public static final String TAB1 = " ";
83:            public static final String TAB2 = "  ";
84:            public static final String TAB4 = "    ";
85:            public static final String NEWLINE = "\n";
86:            public static final String[] XMLC_NOOPS = { "-class", "-dump",
87:                    "-info", "-javac", "-javacflag", "-javacopt", "-keep",
88:                    "-methods", "-sourceout", "-verbose", "-version" };
89:            public static final String XMLC = "XMLC";
90:            public static final String KELP = "Kelp";
91:            public static final String ENHYDRA = "Enhydra";
92:            public static final String TYPE_DODS = "doml";
93:            //    public static final String   TYPE_UNIX_DIRECTORY = "/";
94:            //    public static final String   TYPE_WINDOWS_DIRECTORY = "\\";
95:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.