blob: d9f0e5c9e628a33991712d3190bbfac3471af132 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Matthew Hall and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Matthew Hall - initial API and implementation (bug 194734)
* Matthew Hall - bug 195222, 263413
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.jface.databinding.swt.WidgetValueProperty;
import org.eclipse.swt.widgets.Widget;
/**
* @param <S>
* @since 3.3
*
*/
public abstract class WidgetBooleanValueProperty<S extends Widget> extends
WidgetValueProperty<S, Boolean> {
WidgetBooleanValueProperty() {
super();
}
WidgetBooleanValueProperty(int event) {
super(event);
}
WidgetBooleanValueProperty(int[] events) {
super(events);
}
public Object getValueType() {
return Boolean.TYPE;
}
protected Boolean doGetValue(S source) {
return doGetBooleanValue(source) ? Boolean.TRUE : Boolean.FALSE;
}
protected void doSetValue(S source, Boolean value) {
if (value == null)
value = Boolean.FALSE;
doSetBooleanValue(source, value.booleanValue());
}
abstract boolean doGetBooleanValue(S source);
abstract void doSetBooleanValue(S source, boolean value);
}