/* * The contents of this file are subject to the terms of the Common Development * and Distribution License (the License). You may not use this file except in * compliance with the License. * * You can obtain a copy of the License at http://www.netbeans.org/cddl.html * or http://www.netbeans.org/cddl.txt. * * When distributing Covered Code, include this CDDL Header Notice in each file * and include the License file at http://www.netbeans.org/cddl.txt. * If applicable, add the following below the CDDL Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * The Original Software is NetBeans. The Initial Developer of the Original * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.gwt4nb; import java.awt.Component; import java.util.HashSet; import java.util.Set; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import org.openide.WizardDescriptor; import org.openide.WizardValidationException; import org.openide.util.HelpCtx; import org.openide.util.NbBundle; /** * Panel just asking for basic info. */ public class GWTGAEProjectWizardPanel implements WizardDescriptor.Panel, WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel { private WizardDescriptor wizardDescriptor; private GWTGAEProjectPanelVisual component; public GWTGAEProjectWizardPanel() { } public Component getComponent() { if (component == null) { component = new GWTGAEProjectPanelVisual(this); component.setName(NbBundle.getMessage(GWTGAEProjectWizardPanel.class, "LBL_CreateProjectStep")); } return component; } public HelpCtx getHelp() { return new HelpCtx(GWTGAEProjectWizardPanel.class); } public boolean isValid() { getComponent(); return component.valid(wizardDescriptor); } private final Set<ChangeListener> listeners = new HashSet<ChangeListener>(1); // or can use ChangeSupport in NB 6.0 public final void addChangeListener(ChangeListener l) { synchronized (listeners) { listeners.add(l); } } public final void removeChangeListener(ChangeListener l) { synchronized (listeners) { listeners.remove(l); } } protected final void fireChangeEvent() { Set<ChangeListener> ls; synchronized (listeners) { ls = new HashSet<ChangeListener>(listeners); } ChangeEvent ev = new ChangeEvent(this); for (ChangeListener l : ls) { l.stateChanged(ev); } } public void readSettings(Object settings) { wizardDescriptor = (WizardDescriptor) settings; component.read(wizardDescriptor); } public void storeSettings(Object settings) { WizardDescriptor d = (WizardDescriptor) settings; component.store(d); } public boolean isFinishPanel() { return true; } public void validate() throws WizardValidationException { getComponent(); component.validate(wizardDescriptor); } }