KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > apisupport > project > ui > wizard > BasicConfWizardPanel


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.apisupport.project.ui.wizard;
21
22 import java.awt.Component JavaDoc;
23 import org.netbeans.modules.apisupport.project.Util;
24 import org.openide.util.HelpCtx;
25
26 /**
27  * Second panel of <code>NewNbModuleWizardIterator</code>. Allow user to enter
28  * basic configuration:
29  *
30  * <ul>
31  * <li>Code Name Base</li>
32  * <li>Module Display Name</li>
33  * <li>Localizing Bundle</li>
34  * <li>XML Layer</li>
35  * </ul>
36  *
37  * @author Martin Krauskopf
38  */

39 final class BasicConfWizardPanel extends BasicWizardPanel.NewTemplatePanel {
40
41     /** Representing visual component for this step. */
42     private BasicConfVisualPanel visualPanel;
43     
44     /** Creates a new instance of BasicConfWizardPanel */
45     public BasicConfWizardPanel(final NewModuleProjectData data) {
46         super(data);
47     }
48     
49     public void reloadData() {
50         NewModuleProjectData data = getData();
51         if (data.getCodeNameBase() == null) {
52             String JavaDoc dotName = BasicConfVisualPanel.EXAMPLE_BASE_NAME + data.getProjectName();
53             data.setCodeNameBase(Util.normalizeCNB(dotName));
54         }
55         if (data.getProjectDisplayName() == null) {
56             data.setProjectDisplayName(data.getProjectName());
57         }
58         visualPanel.refreshData();
59     }
60     
61     public void storeData() {
62         visualPanel.storeData();
63     }
64     
65     public Component JavaDoc getComponent() {
66         if (visualPanel == null) {
67             visualPanel = new BasicConfVisualPanel(getData());
68             visualPanel.addPropertyChangeListener(this);
69             visualPanel.setName(getMessage("LBL_BasicConfigPanel_Title"));
70         }
71         return visualPanel;
72     }
73     
74     public HelpCtx getHelp() {
75         return new HelpCtx(BasicConfWizardPanel.class);
76     }
77     
78 }
79
Popular Tags