org.netbeans.modules.php.samples.PHPSamplesWizardPanel Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.php.samples;
import java.awt.Component;
import java.util.HashSet;
import java.util.Set;
import javax.swing.JComponent;
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 PHPSamplesWizardPanel implements WizardDescriptor.Panel,
WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel {
private WizardDescriptor wizardDescriptor;
private PHPSamplesPanelVisual component;
public PHPSamplesWizardPanel() {
}
public Component getComponent() {
if (component == null) {
component = new PHPSamplesPanelVisual(this);
component.setName(NbBundle.getMessage(PHPSamplesWizardPanel.class, "LBL_CreateProjectStep"));
component.putClientProperty("NewProjectWizard_Title", NbBundle.getMessage(PHPSamplesWizardPanel.class, "LBL_TXT_NewPHPSample"));
}
return component;
}
public HelpCtx getHelp() {
return null;
}
public boolean isValid() {
getComponent();
return component.valid(wizardDescriptor);
}
private final Set listeners = new HashSet(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 ls;
synchronized (listeners) {
ls = new HashSet(listeners);
}
ChangeEvent ev = new ChangeEvent(this);
for (ChangeListener l : ls) {
l.stateChanged(ev);
}
}
public void readSettings(Object settings) {
wizardDescriptor = (WizardDescriptor) settings;
component.read(wizardDescriptor);
// XXX hack, TemplateWizard in final setTemplateImpl() forces new wizard's
// title this name is used in NewProjectWizard to modify the title
Object substitute = ((JComponent) component).getClientProperty("NewProjectWizard_Title"); // NOI18N
if (substitute != null) {
wizardDescriptor.putProperty("NewProjectWizard_Title", substitute); // NOI18N
}
}
public void storeSettings(Object settings) {
WizardDescriptor d = (WizardDescriptor) settings;
component.store(d);
d.putProperty("NewProjectWizard_Title", null); // NOI18N
}
public boolean isFinishPanel() {
return true;
}
public void validate() throws WizardValidationException {
getComponent();
component.validate(wizardDescriptor);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy