blob: 27b0b67cff0145c8e5acc3c0f1909a49958c6bdb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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 264286)
*******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.core.databinding.property.value.IValueProperty;
import org.eclipse.swt.widgets.Scale;
import org.eclipse.swt.widgets.Spinner;
/**
* @since 3.3
*
*/
public class WidgetMaximumProperty extends WidgetDelegatingValueProperty {
private IValueProperty scale;
private IValueProperty spinner;
/**
*
*/
public WidgetMaximumProperty() {
super(Integer.TYPE);
}
protected IValueProperty doGetDelegate(Object source) {
if (source instanceof Scale) {
if (scale == null)
scale = new ScaleMaximumProperty();
return scale;
}
if (source instanceof Spinner) {
if (spinner == null)
spinner = new SpinnerMaximumProperty();
return spinner;
}
throw notSupported(source);
}
}