blob: 02111714b41d78918a52e7f0b5fb9d1e0fbd1bda [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.custom.CCombo;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Item;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
/**
* @since 3.3
* @deprecated use static methods in WidgetProperties instead (the method names
* will start with 'text')
*/
// ok to ignore warnings in deprecated class
@SuppressWarnings("rawtypes")
public class WidgetTextProperty extends WidgetDelegatingValueProperty {
private IValueProperty button;
private IValueProperty cCombo;
private IValueProperty cLabel;
private IValueProperty combo;
private IValueProperty item;
private IValueProperty label;
private IValueProperty link;
private IValueProperty shell;
private IValueProperty styledText;
private IValueProperty text;
/**
*
*/
public WidgetTextProperty() {
super(String.class);
}
protected IValueProperty doGetDelegate(Object source) {
if (source instanceof Button) {
if (button == null)
button = new ButtonTextProperty();
return button;
}
if (source instanceof CCombo) {
if (cCombo == null)
cCombo = new CComboTextProperty();
return cCombo;
}
if (source instanceof CLabel) {
if (cLabel == null)
cLabel = new CLabelTextProperty();
return cLabel;
}
if (source instanceof Combo) {
if (combo == null)
combo = new ComboTextProperty();
return combo;
}
if (source instanceof Item) {
if (item == null)
item = new ItemTextProperty();
return item;
}
if (source instanceof Label) {
if (label == null)
label = new LabelTextProperty();
return label;
}
if (source instanceof Link) {
if (link == null)
link = new LinkTextProperty();
return link;
}
if (source instanceof Shell) {
if (shell == null)
shell = new ShellTextProperty();
return shell;
}
if (source instanceof StyledText) {
if (styledText == null)
styledText = new StyledTextTextProperty();
return styledText;
}
if (source instanceof Text) {
if (text == null)
text = new TextTextProperty();
return text;
}
throw notSupported(source);
}
}