Statistics
| Revision:

root / import / ext3D / trunk / install-extension3d / IzPack / src / lib / com / izforge / izpack / util / os / Unix_ShortcutConstants.java @ 15280

History | View | Annotate | Download (3.26 KB)

1
/*
2
 * Created on 11.11.2003
3
 *
4
 * File :             Unix_ShortcutConstants.java
5
 * Description :        ConstantsCollection for UnixShortcuts
6
 * Author's email :     marc.eppelmann@gmx.de
7
 * Website :            http://www.izforge.com
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 */ 
23

    
24
package com.izforge.izpack.util.os;
25

    
26

    
27

    
28

    
29
/**
30
 * Unix_ShortcutConstants
31
 * 
32
 * This is the Interface which holds only the Constants for
33
 * Unix_Shortcut-Placeholders.
34
 * 
35
 * One Dollar marks simple placeholders. Two Dollars marks localized placeholders.
36
 * 
37
 * @author marc.eppelmann@reddot.de
38
 **/
39
public interface Unix_ShortcutConstants
40
{   
41
  /** $Comment = "$Comment" **/
42
  public final static String $Comment = "$Comment";
43
  /** $$LANG_Comment = "$$LANG_Comment" **/
44
  public final static String $$LANG_Comment = "$$LANG_Comment";
45
  /** $Encoding = "$Encoding" */
46
  public final static String $Encoding = "$Encoding";
47
  /** $Exec = "$Exec" */
48
  public final static String $Exec = "$Exec";
49
  /** $Arguments = "$Arguments" */
50
  public final static String $Arguments = "$Arguments";
51
  /** $GenericName = "$GenericName" */
52
  public final static String $GenericName = "$GenericName";
53
  /** $$LANG_GenericName = "$$LANG_GenericName" */
54
  public final static String $$LANG_GenericName = "$$LANG_GenericName";
55
  /** $MimeType = "$MimeType" */
56
  public final static String $MimeType = "$MimeType";
57
  /** $Name = "$Name" */
58
  public final static String $Name = "$Name";
59
  /** $$LANG_Name = "$$LANG_Name" */
60
  public final static String $$LANG_Name = "$$LANG_Name";
61
  /** $Path = "$Path" */
62
  public final static String $Path = "$Path";
63
  /** $ServiceTypes = "$ServiceTypes" */
64
  public final static String $ServiceTypes = "$ServiceTypes";
65
  /** $SwallowExec = "$SwallowExec" */
66
  public final static String $SwallowExec = "$SwallowExec";
67
  /** $SwallowTitle = "$SwallowTitle" */
68
  public final static String $SwallowTitle = "$SwallowTitle";
69
  /** $Terminal = "$Terminal" */
70
  public final static String $Terminal = "$Terminal";
71
  /** $Options_For_Terminal = "$Options_For_Terminal" */
72
  public final static String $Options_For_Terminal = "$Options_For_Terminal";
73
  /** $Type = "$Type" */
74
  public final static String $Type = "$Type";
75
  /** $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID" */
76
  public final static String $X_KDE_SubstituteUID = "$X_KDE_SubstituteUID";
77
  /** $X_KDE_Username = "$X_KDE_Username" */
78
  public final static String $X_KDE_Username = "$X_KDE_Username"; 
79
  /** $Icon = "$Icon" */
80
  public final static String $Icon = "$Icon";
81
  /** $URL  = "$URL" */
82
  public final static String $URL  = "$URL";
83
}