001: /*
002: * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
003: *
004: * http://izpack.org/
005: * http://izpack.codehaus.org/
006: *
007: * Copyright 2003 Marc Eppelmann
008: *
009: * Licensed under the Apache License, Version 2.0 (the "License");
010: * you may not use this file except in compliance with the License.
011: * You may obtain a copy of the License at
012: *
013: * http://www.apache.org/licenses/LICENSE-2.0
014: *
015: * Unless required by applicable law or agreed to in writing, software
016: * distributed under the License is distributed on an "AS IS" BASIS,
017: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
018: * See the License for the specific language governing permissions and
019: * limitations under the License.
020: */
021:
022: package com.izforge.izpack.util.os;
023:
024: /**
025: * Unix_ShortcutConstants
026: *
027: * This is the Interface which holds only the Constants for Unix_Shortcut-Placeholders.
028: *
029: * One Dollar marks simple placeholders. Two Dollars marks localized placeholders.
030: *
031: * @author marc.eppelmann@reddot.de
032: */
033: public interface Unix_ShortcutConstants {
034:
035: /** $Comment = "$Comment" * */
036: public final static String $Comment = "$Comment";
037:
038: /** $$LANG_Comment = "$$LANG_Comment" * */
039: public final static String $$LANG_Comment = "$$LANG_Comment";
040:
041: /** $Encoding = "$Encoding" */
042: public final static String $Encoding = "$Encoding";
043:
044: /** $Exec = "$Exec" */
045: public final static String $Exec = "$Exec";
046:
047: /** $Arguments = "$Arguments" */
048: public final static String $Arguments = "$Arguments";
049:
050: /** $GenericName = "$GenericName" */
051: public final static String $GenericName = "$GenericName";
052:
053: /** $$LANG_GenericName = "$$LANG_GenericName" */
054: public final static String $$LANG_GenericName = "$$LANG_GenericName";
055:
056: /** $MimeType = "$MimeType" */
057: public final static String $MimeType = "$MimeType";
058:
059: /** $Name = "$Name" */
060: public final static String $Name = "$Name";
061:
062: /** $$LANG_Name = "$$LANG_Name" */
063: public final static String $$LANG_Name = "$$LANG_Name";
064:
065: /** $Path = "$Path" */
066: public final static String $Path = "$Path";
067:
068: /** $ServiceTypes = "$ServiceTypes" */
069: public final static String $ServiceTypes = "$ServiceTypes";
070:
071: /** $SwallowExec = "$SwallowExec" */
072: public final static String $SwallowExec = "$SwallowExec";
073:
074: /** $SwallowTitle = "$SwallowTitle" */
075: public final static String $SwallowTitle = "$SwallowTitle";
076:
077: /** $Terminal = "$Terminal" */
078: public final static String $Terminal = "$Terminal";
079:
080: /** $Options_For_Terminal = "$Options_For_Terminal" */
081: public final static String $Options_For_Terminal = "$Options_For_Terminal";
082:
083: /** $Type = "$Type" */
084: public final static String $Type = "$Type";
085:
086: /** $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID" */
087: public final static String $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID";
088:
089: /** $X_KDE_Username = "$X_KDE_Username" */
090: public final static String $X_KDE_Username = "$X_KDE_Username";
091:
092: /** $Icon = "$Icon" */
093: public final static String $Icon = "$Icon";
094:
095: /** $URL = "$URL" */
096: public final static String $URL = "$URL";
097:
098: /** $E_QUOT = "$E_QUOT": QuotationMark-Placeholder for the "<b>E</b>xec"-line */
099: public final static String $E_QUOT = "$E_QUOT";
100:
101: /** $P_QUOT = "$P_QUOT" QuotationMark-Placeholder for the "<b>P</b>ath/workingDir"-line */
102: public final static String $P_QUOT = "$P_QUOT";
103:
104: /** $Categories = "$Categories" */
105: public final static String $Categories = "$Categories";
106:
107: /** $TryExec = "$TryExec" */
108: public final static String $TryExec = "$TryExec";
109: }
|