blob: 241256f97c92d71a1506c4c34cc1d316d72414ea [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 - bugs 195222, 256543, 263413, 262287
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.jface.databinding.swt.WidgetValueProperty;
/**
* @since 3.3
*
*/
public abstract class WidgetStringValueProperty extends WidgetValueProperty {
WidgetStringValueProperty() {
super();
}
WidgetStringValueProperty(int event) {
super(event);
}
WidgetStringValueProperty(int[] events) {
super(events);
}
WidgetStringValueProperty(int[] events, int[] staleEvents) {
super(events, staleEvents);
}
public Object getValueType() {
return String.class;
}
protected Object doGetValue(Object source) {
return doGetStringValue(source);
}
protected void doSetValue(Object source, Object value) {
doSetStringValue(source, (String) value);
}
abstract String doGetStringValue(Object source);
abstract void doSetStringValue(Object source, String value);
}