/*
* File : PluginStringParameter.java
* Created : 15 d�c. 2003}
* By : Olivier
*
* Azureus - a Java Bittorrent client
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details ( see the LICENSE file ).
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.gudy.azureus2.ui.swt.config.plugins;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.gudy.azureus2.pluginsimpl.local.ui.config.BooleanParameterImpl;
import org.gudy.azureus2.ui.swt.Messages;
import org.gudy.azureus2.ui.swt.config.IAdditionalActionPerformer;
/**
* @author Olivier
*
*/
public class PluginBooleanParameter implements PluginParameterImpl {
Control[] controls;
org.gudy.azureus2.ui.swt.config.BooleanParameter booleanParameter;
public PluginBooleanParameter(Composite pluginGroup,BooleanParameterImpl parameter) {
controls = new Control[2];
controls[0] = new Label(pluginGroup,SWT.NULL);
Messages.setLanguageText(controls[0],parameter.getLabelKey());
booleanParameter =
new org.gudy.azureus2.ui.swt.config.BooleanParameter(
pluginGroup,
parameter.getKey(),
parameter.getDefaultValue());
controls[1] = booleanParameter.getControl();
new Label(pluginGroup,SWT.NULL);
}
public Control[] getControls(){
return controls;
}
public void setAdditionalActionPerfomer(IAdditionalActionPerformer performer) {
booleanParameter.setAdditionalActionPerformer(performer);
}
}