blob: 9e4fb75846c9eb6ed023ce655c01e51546d77f32 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2015 Matthew Hall and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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;
import org.eclipse.swt.widgets.Widget;
/**
* @param <S> type of the source object
*
* @since 3.3
*/
public abstract class WidgetStringValueProperty<S extends Widget> extends WidgetValueProperty<S, String> {
WidgetStringValueProperty() {
super();
}
WidgetStringValueProperty(int event) {
super(event);
}
WidgetStringValueProperty(int[] events) {
super(events);
}
WidgetStringValueProperty(int[] events, int[] staleEvents) {
super(events, staleEvents);
}
@Override
public Object getValueType() {
return String.class;
}
@Override
protected String doGetValue(S source) {
return doGetStringValue(source);
}
@Override
protected void doSetValue(S source, String value) {
doSetStringValue(source, value);
}
protected abstract String doGetStringValue(S source);
protected abstract void doSetStringValue(S source, String value);
}