KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > yagga > miniinstaller > Step


1 /*
2  * This file is part of MiniInstaller, a self installer builder for Java
3  * Copyright (C) 2002 Walter Gamba
4  * mailto:walter@yagga.net
5  * http://www.yagga.net/java/miniinstaller
6  *
7  * MiniInstaller is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * MiniInstaller is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  *
21  * As the time of writing, the GNU General Public Licene can be
22  * found at http://www.gnu.org/licenses/gpl.txt
23  *
24  */

25
26 package net.yagga.miniinstaller;
27
28 /**
29  * Helper class that holds step names as they appera on the left hand ide of the panel
30  * <p>Title: MiniInstaller</p>
31  * <p>Description: </p>
32  * <p>Copyright: Copyright (c) 2002</p>
33  * <p>Company: Yagga Soft</p>
34  * @author Walter Gamba
35  * @version 1.0
36  */

37 public class Step{
38   public String JavaDoc name;
39   public int index;
40   public Step(String JavaDoc name, int index){
41     this.name=name;
42     this.index=index;
43   }
44 }
Popular Tags