blob: 2298aa3956ca9e9df7cf772d82cb1aa8c4454077 [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.list.IListProperty;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.List;
/**
* @since 3.3
* @deprecated use static methods in WidgetProperties instead (the method names
* will start with 'items')
*/
// ok to ignore warnings in deprecated class
@SuppressWarnings("rawtypes")
public class WidgetItemsProperty extends WidgetDelegatingListProperty {
private IListProperty cCombo;
private IListProperty combo;
private IListProperty list;
/**
*
*/
public WidgetItemsProperty() {
super(String.class);
}
protected IListProperty doGetDelegate(Object source) {
if (source instanceof CCombo) {
if (cCombo == null)
cCombo = new CComboItemsProperty();
return cCombo;
}
if (source instanceof Combo) {
if (combo == null)
combo = new ComboItemsProperty();
return combo;
}
if (source instanceof List) {
if (list == null)
list = new ListItemsProperty();
return list;
}
throw notSupported(source);
}
}