001/*
002 * IzPack - Copyright 2001-2005 Julien Ponge, All Rights Reserved.
003 * 
004 * http://www.izforge.com/izpack/
005 * http://developer.berlios.de/projects/izpack/
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
022package 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 */
033public interface Unix_ShortcutConstants
034{
035
036    /** $Comment = "$Comment" * */
037    public final static String $Comment = "$Comment";
038
039    /** $$LANG_Comment = "$$LANG_Comment" * */
040    public final static String $$LANG_Comment = "$$LANG_Comment";
041
042    /** $Encoding = "$Encoding" */
043    public final static String $Encoding = "$Encoding";
044
045    /** $Exec = "$Exec" */
046    public final static String $Exec = "$Exec";
047
048    /** $Arguments = "$Arguments" */
049    public final static String $Arguments = "$Arguments";
050
051    /** $GenericName = "$GenericName" */
052    public final static String $GenericName = "$GenericName";
053
054    /** $$LANG_GenericName = "$$LANG_GenericName" */
055    public final static String $$LANG_GenericName = "$$LANG_GenericName";
056
057    /** $MimeType = "$MimeType" */
058    public final static String $MimeType = "$MimeType";
059
060    /** $Name = "$Name" */
061    public final static String $Name = "$Name";
062
063    /** $$LANG_Name = "$$LANG_Name" */
064    public final static String $$LANG_Name = "$$LANG_Name";
065
066    /** $Path = "$Path" */
067    public final static String $Path = "$Path";
068
069    /** $ServiceTypes = "$ServiceTypes" */
070    public final static String $ServiceTypes = "$ServiceTypes";
071
072    /** $SwallowExec = "$SwallowExec" */
073    public final static String $SwallowExec = "$SwallowExec";
074
075    /** $SwallowTitle = "$SwallowTitle" */
076    public final static String $SwallowTitle = "$SwallowTitle";
077
078    /** $Terminal = "$Terminal" */
079    public final static String $Terminal = "$Terminal";
080
081    /** $Options_For_Terminal = "$Options_For_Terminal" */
082    public final static String $Options_For_Terminal = "$Options_For_Terminal";
083
084    /** $Type = "$Type" */
085    public final static String $Type = "$Type";
086
087    /** $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID" */
088    public final static String $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID";
089
090    /** $X_KDE_Username = "$X_KDE_Username" */
091    public final static String $X_KDE_Username = "$X_KDE_Username";
092
093    /** $Icon = "$Icon" */
094    public final static String $Icon = "$Icon";
095
096    /** $URL = "$URL" */
097    public final static String $URL = "$URL";
098    
099    /** $E_QUOT = "$E_QUOT": QuotationMark-Placeholder for the "<b>E</b>xec"-line */
100    public final static String $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 $P_QUOT = "$P_QUOT";
104}