KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > tool > codegen > Constants


1
2 /*
3  * Enhydra Java Application Server Project
4  *
5  * The contents of this file are subject to the Enhydra Public License
6  * Version 1.1 (the "License"); you may not use this file except in
7  * compliance with the License. You may obtain a copy of the License on
8  * the Enhydra web site ( http://www.enhydra.org/ ).
9  *
10  * Software distributed under the License is distributed on an "AS IS"
11  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
12  * the License for the specific terms governing rights and limitations
13  * under the License.
14  *
15  * The Initial Developer of the Enhydra Application Server is Lutris
16  * Technologies, Inc. The Enhydra Application Server and portions created
17  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
18  * All Rights Reserved.
19  *
20  * Contributor(s):
21  *
22  */

23
24 //
25
package org.enhydra.tool.codegen;
26
27 //
28
public interface Constants {
29
30     //
31
public final String JavaDoc CLIENT_SUFFIX = "-client"; // nores
32
public final String JavaDoc XMLC_SUFFIX = "-xmlc"; // nores
33
public final String JavaDoc XMLC_DEFAULT = "default"; // nores
34

35     //
36
public final String JavaDoc CONTENT_HTML = "text/html"; // nores
37
public final String JavaDoc CONTENT_WML = "text/vnd.wap.wml"; // nores
38

39     //
40
public final String JavaDoc DIR_AT_PACKAGE_DIR_AT = "at_PACKAGE_DIR_at"; // nores
41
public final String JavaDoc DIR_TEMPLATE = "template"; // nores
42
public final String JavaDoc DIR_INPUT = "input"; // nores
43
public final String JavaDoc DIR_LIB = "lib"; // nores
44
public final String JavaDoc DIR_MEDIA = "media"; // nores
45
public final String JavaDoc DIR_OUTPUT = "output"; // nores
46
public final String JavaDoc DIR_PRESENTATION = "presentation"; // nores
47
public final String JavaDoc DIR_SRC = "src"; // nores
48
public final String JavaDoc DIR_TOOL = "tool"; // nores
49
public final String JavaDoc DIR_RESOURCES = "resources"; // nores
50

51 // Compliance with WEBDOCWF begin
52
// WEBDOCWF line - has no sense in Enhydra 5.1
53
// public final String FILE_ENHYDRA_JAR = "webdocwf.jar"; // nores
54
// Compliance with WEBDOCWF end
55
public final String JavaDoc FILE_ENHYDRA_JAR = "enhydra.jar"; // nores
56
public final String JavaDoc FILE_README_HTML = "readme.html"; // nores
57

58     // CLI files
59
public final String JavaDoc FILE_MAKEFILE = "Makefile"; // nores
60
public final String JavaDoc FILE_BUILD_XML = "build.xml"; // nores
61
public final String JavaDoc FILE_RUN_IN = "run.in"; // nores
62
public final String JavaDoc FILE_RUN_BAT_IN = "run.bat.in"; // nores
63

64     //
65
public final String JavaDoc SYS_JAVA_VERSION = "java.version"; // nores
66
public final String JavaDoc SYS_JAVA_VENDOR = "java.vendor"; // nores
67
public final String JavaDoc SYS_USER_HOME = "user.home"; // nores
68

69     //
70
public final String JavaDoc TYPE_CONF = "conf"; // nores
71
public final String JavaDoc TYPE_HTML = "html"; // nores
72
public final String JavaDoc TYPE_IN = "in"; // nores
73
public final String JavaDoc TYPE_JAVA = "java"; // nores
74
public final String JavaDoc TYPE_XML = "xml"; // nores
75
public final String JavaDoc TYPE_MK = "mk"; // nores
76
public final String JavaDoc TYPE_TEMPLATE = "template"; // nores
77
public final String JavaDoc TYPE_WML = "wml"; // nores
78
public final String JavaDoc TYPE_BAT = "bat"; // nores
79

80     //
81
public final String JavaDoc TAB4 = " ";
82 }
83
Popular Tags