Statistics
| Revision:

root / import / ext3D / trunk / install-extension3d / IzPack / src / lib / com / izforge / izpack / installer / InstallData.java @ 15280

History | View | Annotate | Download (1.84 KB)

1
/*
2
 *  $Id: InstallData.java,v 1.1 2006/06/14 07:29:07 cesar Exp $
3
 *  IzPack
4
 *  Copyright (C) 2001-2004 Julien Ponge
5
 *
6
 *  File :               InstallData.java
7
 *  Description :        Installer internal data.
8
 *  Author's email :     julien@izforge.com
9
 *  Author's Website :   http://www.izforge.com
10
 *
11
 *  This program is free software; you can redistribute it and/or
12
 *  modify it under the terms of the GNU General Public License
13
 *  as published by the Free Software Foundation; either version 2
14
 *  of the License, or any later version.
15
 *
16
 *  This program is distributed in the hope that it will be useful,
17
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 *  GNU General Public License for more details.
20
 *
21
 *  You should have received a copy of the GNU General Public License
22
 *  along with this program; if not, write to the Free Software
23
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
 */
25
package com.izforge.izpack.installer;
26

    
27
import java.awt.Color;
28
import java.io.Serializable;
29

    
30
import com.izforge.izpack.GUIPrefs;
31

    
32
/**
33
 *  Encloses information about the install process. This class is implemented as
34
 *  a singleton which can be easily accessed by different components of the
35
 *  installer. However, this implementation is not thread safe.
36
 *
37
 * @author     Julien Ponge <julien@izforge.com>
38
 * @author     Johannes Lehtinen <johannes.lehtinen@iki.fi>
39
 */
40
public class InstallData extends AutomatedInstallData implements Serializable
41
{
42
  /**  The GUI preferences. */
43
  public GUIPrefs guiPrefs;
44

    
45
  /**  The buttons highlighting color. */
46
  public Color buttonsHColor = new Color(230, 230, 230);
47

    
48
  /**  Constructs a new instance of this class.  */
49
  protected InstallData()
50
  {
51
    super();
52
  }
53
}