KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ixenon > free > install > InstallConstants


1 /* $Id$
2  *
3  * Copyright (c) 1999 Xenonsoft Limited. All Rights Reserved.
4  *
5  * This software is protected by copyright. You are hereby notified from
6  * now by reading this message. This software is also the confidential
7  * and proprietary information of Xenonsoft Limited. ("Confidential
8  * Information").
9  *
10  * This software is distributed under the Xenonsoft Public end user
11  * License ("XPeL"), where the machine-readable source code is provided
12  * under the "Open Source" model.
13  * For more information, please read the file "LICENSE-XPL.txt"
14  */

15
16 // InstallConstants.java
17

18 // Description:
19
// Installer constants
20
//
21
// Author:
22
// Peter Pilgrim
23
// Mon Jan 11 23:50:46 GMT 1999
24
//
25
// RCS HEADER
26
//
27
// $Author$
28
// $Date$
29
// $Source$
30
// $Revision$ $State$ $Locker$
31
//
32
// History
33
// ================================================================================
34
// $Log$
35

36
37 package ixenon.free.install;
38
39 public interface InstallConstants {
40
41     /** The basic installation */
42     public final static int BASIC_INSTALLATION=1;
43     /** The custom installation */
44     public final static int CUSTOM_INSTALLATION=2;
45     /** The compact installation */
46     public final static int COMPACT_INSTALLATION=3;
47
48     /** The basic installation string */
49     public final static String JavaDoc BASIC_INSTALLATION_STRING="Basic Installation";
50     /** The custom installation string */
51     public final static String JavaDoc CUSTOM_INSTALLATION_STRING="Custom Installation";
52     /** The compact installation string */
53     public final static String JavaDoc COMPACT_INSTALLATION_STRING="Compact Installation";
54
55     /** Install a file with executable permissions
56      * (UNIX: chmod 0755 <I>filename</I>
57      */

58     public final static int INST_EXE_PERMS=1;
59
60     /** Install a file with readable / writable permissions
61      * (UNIX: chmod 0644 <I>filename</I>
62      */

63     public final static int INST_RDWR_PERMS=2;
64     
65     /** Install a file with read only permissions
66      * (UNIX: chmod 0444 <I>filename</I>
67      */

68     public final static int INST_RDONLY_PERMS=3;
69     
70 }
71
72 // fini
73
Popular Tags