KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > izforge > izpack > util > os > Unix_ShortcutConstants


1 /*
2  * IzPack - Copyright 2001-2007 Julien Ponge, All Rights Reserved.
3  *
4  * http://www.izforge.com/izpack/
5  * http://developer.berlios.de/projects/izpack/
6  *
7  * Copyright 2003 Marc Eppelmann
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */

21
22 package com.izforge.izpack.util.os;
23
24 /**
25  * Unix_ShortcutConstants
26  *
27  * This is the Interface which holds only the Constants for Unix_Shortcut-Placeholders.
28  *
29  * One Dollar marks simple placeholders. Two Dollars marks localized placeholders.
30  *
31  * @author marc.eppelmann@reddot.de
32  */

33 public interface Unix_ShortcutConstants
34 {
35
36     /** $Comment = "$Comment" * */
37     public final static String JavaDoc $Comment = "$Comment";
38
39     /** $$LANG_Comment = "$$LANG_Comment" * */
40     public final static String JavaDoc $$LANG_Comment = "$$LANG_Comment";
41
42     /** $Encoding = "$Encoding" */
43     public final static String JavaDoc $Encoding = "$Encoding";
44
45     /** $Exec = "$Exec" */
46     public final static String JavaDoc $Exec = "$Exec";
47
48     /** $Arguments = "$Arguments" */
49     public final static String JavaDoc $Arguments = "$Arguments";
50
51     /** $GenericName = "$GenericName" */
52     public final static String JavaDoc $GenericName = "$GenericName";
53
54     /** $$LANG_GenericName = "$$LANG_GenericName" */
55     public final static String JavaDoc $$LANG_GenericName = "$$LANG_GenericName";
56
57     /** $MimeType = "$MimeType" */
58     public final static String JavaDoc $MimeType = "$MimeType";
59
60     /** $Name = "$Name" */
61     public final static String JavaDoc $Name = "$Name";
62
63     /** $$LANG_Name = "$$LANG_Name" */
64     public final static String JavaDoc $$LANG_Name = "$$LANG_Name";
65
66     /** $Path = "$Path" */
67     public final static String JavaDoc $Path = "$Path";
68
69     /** $ServiceTypes = "$ServiceTypes" */
70     public final static String JavaDoc $ServiceTypes = "$ServiceTypes";
71
72     /** $SwallowExec = "$SwallowExec" */
73     public final static String JavaDoc $SwallowExec = "$SwallowExec";
74
75     /** $SwallowTitle = "$SwallowTitle" */
76     public final static String JavaDoc $SwallowTitle = "$SwallowTitle";
77
78     /** $Terminal = "$Terminal" */
79     public final static String JavaDoc $Terminal = "$Terminal";
80
81     /** $Options_For_Terminal = "$Options_For_Terminal" */
82     public final static String JavaDoc $Options_For_Terminal = "$Options_For_Terminal";
83
84     /** $Type = "$Type" */
85     public final static String JavaDoc $Type = "$Type";
86
87     /** $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID" */
88     public final static String JavaDoc $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID";
89     
90     /** $X_KDE_Username = "$X_KDE_Username" */
91     public final static String JavaDoc $X_KDE_Username = "$X_KDE_Username";
92
93     /** $Icon = "$Icon" */
94     public final static String JavaDoc $Icon = "$Icon";
95
96     /** $URL = "$URL" */
97     public final static String JavaDoc $URL = "$URL";
98     
99     /** $E_QUOT = "$E_QUOT": QuotationMark-Placeholder for the "<b>E</b>xec"-line */
100     public final static String JavaDoc $E_QUOT = "$E_QUOT";
101     
102     /** $P_QUOT = "$P_QUOT" QuotationMark-Placeholder for the "<b>P</b>ath/workingDir"-line */
103     public final static String JavaDoc $P_QUOT = "$P_QUOT";
104
105     /** $Categories = "$Categories" */
106     public final static String JavaDoc $Categories = "$Categories";
107     
108     /** $TryExec = "$TryExec" */
109     public final static String JavaDoc $TryExec = "$TryExec";
110 }
111
Popular Tags