blob: 05d1bebf16a231a0681ebe9bb4c693abd1727216 [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>
* type of the source control (the control that contains this
* property)
* @since 3.3
*
*/
public abstract class WidgetIntValueProperty<S extends Widget> extends
WidgetValueProperty<S, Integer> {
WidgetIntValueProperty() {
super();
}
WidgetIntValueProperty(int event) {
super(event);
}
WidgetIntValueProperty(int[] events) {
super(events);
}
public Object getValueType() {
return Integer.TYPE;
}
}