List of usage examples for org.eclipse.jface.databinding.swt ISWTObservableValue interface-usage
From source file com.rcpcompany.uibindings.internal.observables.AbstractSWTObservableValue.java
/** * Copied strait out of * {@link org.eclipse.jface.internal.databinding.provisional.swt.AbstractSWTObservableValue}. */ public abstract class AbstractSWTObservableValue extends AbstractObservableValue implements ISWTObservableValue {
From source file com.rcpcompany.uibindings.internal.observables.AbstractSWTVetoableValue.java
/** * Copied strait out of * {@link org.eclipse.jface.internal.databinding.provisional.swt.AbstractSWTVetoableValue}. */ public abstract class AbstractSWTVetoableValue extends AbstractVetoableValue implements ISWTObservableValue {
From source file com.runwaysdk.manager.model.databinding.IDateObservableValue.java
public class IDateObservableValue extends AbstractObservableValue implements ISWTObservableValue { private IDateTime dateTime; private Date currentValue; private Calendar calendar;
From source file com.runwaysdk.manager.model.databinding.ReferenceObservableValue.java
public class ReferenceObservableValue extends AbstractObservableValue implements ISWTObservableValue { private PopupWidget view; private ComponentIF currentValue; private IPropertyListener listener;
From source file com.runwaysdk.manager.model.databinding.StructObservableValue.java
public class StructObservableValue extends AbstractObservableValue implements ISWTObservableValue { private StructView view; private IComponentObject currentValue; private boolean updating = false;
From source file de.walware.ecommons.databinding.jface.AbstractSWTObservableValue.java
/**
* NON-API - An abstract superclass for observable values that gurantees that the
* observable will be disposed when the control to which it is attached is
* disposed.
*
* @since 1.1
From source file gov.nasa.ensemble.core.detail.emf.binding.CDateTimeObservableValue.java
/**
* A modified implementation of the DataBindings IObservableValue interface for the Nebula
* CDateTime control. Customized to use a listener that responds to FocusOut eventa as well
* as the default selected (Enter) event
*
* @author pcentgraf (modified by rnado)
From source file org.fornax.cartridges.sculptor.framework.richclient.databinding.DateTimeObservableValue.java
public class DateTimeObservableValue extends AbstractObservableValue implements ISWTObservableValue { private DateTime dateTime; private Date currentValue; private Listener listener; private boolean updating = false;
From source file org.fornax.cartridges.sculptor.framework.richclient.databinding.JodaLocalDateObservableValue.java
public class JodaLocalDateObservableValue extends AbstractObservableValue implements ISWTObservableValue { private DateTime dateTime; private LocalDate currentValue; private Listener listener; private boolean updating = false;
From source file org.fornax.cartridges.sculptor.framework.richclient.databinding.JodaYearMontDayObservableValue.java
@Deprecated public class JodaYearMontDayObservableValue extends AbstractObservableValue implements ISWTObservableValue { private DateTime dateTime; // TODO YearMontDay is deprecated we should use LocalDate instead: http://joda-time.sourceforge.net/apidocs/ private YearMonthDay currentValue; private Listener listener;