Package org.eclipse.jface.internal.databinding.internal.swt

Examples of org.eclipse.jface.internal.databinding.internal.swt.CLabelObservableValue


   */
  public static ISWTObservableValue observeText(Control control) {
    if (control instanceof Label) {
      return new LabelObservableValue((Label) control);
    } else if (control instanceof CLabel) {
      return new CLabelObservableValue((CLabel) control);
    } else if (control instanceof Combo) {
      return new ComboObservableValue((Combo) control, SWTProperties.TEXT);
    } else if (control instanceof CCombo) {
      return new CComboObservableValue((CCombo) control,
          SWTProperties.TEXT);
View Full Code Here

TOP

Related Classes of org.eclipse.jface.internal.databinding.internal.swt.CLabelObservableValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.