a10b475444a81db90a8c007bf3d92df0b21280f6
[jSite.git] / src / main / java / de / todesbaum / util / swing / TWizardPage.java
1 /*
2  * jSite - TWizardPage.java - Copyright © 2006–2012 David Roden
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package de.todesbaum.util.swing;
20
21 import javax.swing.JPanel;
22
23 /**
24  * @author David Roden <droden@gmail.com>
25  * @version $Id$
26  */
27 public class TWizardPage extends JPanel {
28
29         protected final TWizard wizard;
30         protected String heading;
31         protected String description;
32
33         public TWizardPage(final TWizard wizard) {
34                 this.wizard = wizard;
35         }
36
37         public TWizardPage(final TWizard wizard, String heading) {
38                 this.wizard = wizard;
39                 this.heading = heading;
40         }
41
42         public TWizardPage(final TWizard wizard, String heading, String description) {
43                 this(wizard, heading);
44                 this.description = description;
45         }
46
47         /**
48          * @return Returns the description.
49          */
50         public String getDescription() {
51                 return description;
52         }
53
54         /**
55          * @param description
56          *            The description to set.
57          */
58         public void setDescription(String description) {
59                 this.description = description;
60         }
61
62         /**
63          * @return Returns the heading.
64          */
65         public String getHeading() {
66                 return heading;
67         }
68
69         /**
70          * @param heading
71          *            The heading to set.
72          */
73         public void setHeading(String heading) {
74                 this.heading = heading;
75         }
76
77         public void pageAdded(TWizard wizard) {
78         }
79
80         public void pageDeleted(TWizard wizard) {
81         }
82
83 }