Package tk.eclipse.plugin.htmleditor.gefutils

Source Code of tk.eclipse.plugin.htmleditor.gefutils.BooleanPropertyDescriptor

package tk.eclipse.plugin.htmleditor.gefutils;

import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.jface.viewers.ComboBoxCellEditor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.views.properties.PropertyDescriptor;

/**
* The PropertyDescriptor for the boolean value.
*
* @author Naoki Takezoe
*/
public class BooleanPropertyDescriptor extends PropertyDescriptor {

    public BooleanPropertyDescriptor(Object id, String displayName) {
        super(id, displayName);
    }

    public CellEditor createPropertyEditor(Composite parent) {
        CellEditor editor = new ComboBoxCellEditor(parent, new String[] { "true", "false" }, SWT.READ_ONLY) {
            protected void doSetValue(Object value) {
                if (((Boolean) value).booleanValue()) {
                    super.doSetValue(new Integer(0));
                } else {
                    super.doSetValue(new Integer(1));
                }
            }

            protected Object doGetValue() {
                int selection = ((Integer) super.doGetValue()).intValue();
                if (selection == 0) {
                    return new Boolean(true);
                } else {
                    return new Boolean(false);
                }
            }
        };

        if (getValidator() != null)
            editor.setValidator(getValidator());

        return editor;
    }

}
TOP

Related Classes of tk.eclipse.plugin.htmleditor.gefutils.BooleanPropertyDescriptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.