~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to apisupport/project/src/org/netbeans/modules/apisupport/project/ui/wizard/BasicWizardPanel.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.modules.apisupport.project.ui.wizard;
 
43
 
 
44
import java.beans.PropertyChangeEvent;
 
45
import java.beans.PropertyChangeListener;
 
46
import javax.swing.event.ChangeListener;
 
47
import org.openide.WizardDescriptor;
 
48
import org.openide.util.ChangeSupport;
 
49
import org.openide.util.HelpCtx;
 
50
import org.openide.util.NbBundle;
 
51
 
 
52
/**
 
53
 * Basic wizard panel for APISupport projects.
 
54
 *
 
55
 * @author Martin Krauskopf
 
56
 */
 
57
public abstract class BasicWizardPanel implements WizardDescriptor.Panel<WizardDescriptor>, PropertyChangeListener {
 
58
    
 
59
    private boolean valid = true;
 
60
    private WizardDescriptor settings;
 
61
    
 
62
    private final ChangeSupport changeSupport = new ChangeSupport(this);
 
63
    
 
64
    protected BasicWizardPanel(WizardDescriptor settings) {
 
65
        this.settings = settings;
 
66
    }
 
67
    
 
68
    public void setSettings(WizardDescriptor settings) {
 
69
        this.settings = settings;
 
70
    }
 
71
    
 
72
    protected WizardDescriptor getSettings() {
 
73
        return settings;
 
74
    }
 
75
    
 
76
    public void addChangeListener(ChangeListener l) {
 
77
        changeSupport.addChangeListener(l);
 
78
    }
 
79
    
 
80
    public void removeChangeListener(ChangeListener l) {
 
81
        changeSupport.removeChangeListener(l);
 
82
    }
 
83
    
 
84
    protected void fireChange() {
 
85
        changeSupport.fireChange();
 
86
    }
 
87
    
 
88
    /**
 
89
     * Convenience method for accessing Bundle resources from this package.
 
90
     */
 
91
    protected final String getMessage(String key) {
 
92
        return NbBundle.getMessage(getClass(), key);
 
93
    }
 
94
    
 
95
    public HelpCtx getHelp() {
 
96
        return null;
 
97
    }
 
98
    
 
99
    public void storeSettings(WizardDescriptor settings) {}
 
100
    
 
101
    public void readSettings(WizardDescriptor settings) {}
 
102
    
 
103
    public boolean isValid() {
 
104
        return valid;
 
105
    }
 
106
    
 
107
    /**
 
108
     * Mainly for receiving events from wrapped component about its validity.
 
109
     * Firing events further to Wizard descriptor so it will reread this panel's
 
110
     * state and reenable/redisable its next/prev/finish/... buttons.
 
111
     */
 
112
    public void propertyChange(PropertyChangeEvent evt) {
 
113
        if ("valid".equals(evt.getPropertyName())) { // NOI18N
 
114
            boolean nueValid = ((Boolean) evt.getNewValue()).booleanValue();
 
115
            if (nueValid != valid) {
 
116
                valid = nueValid;
 
117
                fireChange();
 
118
            }
 
119
        }
 
120
    }
 
121
    
 
122
    abstract static class NewTemplatePanel extends BasicWizardPanel {
 
123
        
 
124
        private final NewModuleProjectData data;
 
125
        
 
126
        NewTemplatePanel(final NewModuleProjectData data) {
 
127
            super(data.getSettings());
 
128
            this.data = data;
 
129
        }
 
130
        
 
131
        abstract void reloadData();
 
132
        abstract void storeData();
 
133
        
 
134
        public NewModuleProjectData getData() {
 
135
            return data;
 
136
        }
 
137
        
 
138
        public @Override void readSettings(WizardDescriptor settings) {
 
139
            reloadData();
 
140
        }
 
141
        
 
142
        public @Override void storeSettings(WizardDescriptor settings) {
 
143
            storeData();
 
144
        }
 
145
        
 
146
        protected String getWizardTypeString() {
 
147
            String helpId = null;
 
148
            switch (data.getWizardType()) {
 
149
                case NewNbModuleWizardIterator.TYPE_SUITE:
 
150
                    helpId = "suite"; // NOI18N
 
151
                    break;
 
152
                case NewNbModuleWizardIterator.TYPE_MODULE:
 
153
                case NewNbModuleWizardIterator.TYPE_SUITE_COMPONENT:
 
154
                    helpId = "module"; // NOI18N
 
155
                    break;
 
156
                case NewNbModuleWizardIterator.TYPE_LIBRARY_MODULE:
 
157
                    helpId = "library"; // NOI18N
 
158
                    break;
 
159
                default:
 
160
                    assert false : "Unknown wizard type = " + data.getWizardType();
 
161
            }
 
162
            return helpId;
 
163
        }
 
164
        
 
165
    }
 
166
    
 
167
}