blob: a973538e726ed4a6a1c9a94819b32ee1eb2c2feb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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
*******************************************************************************/
package it.rcpvision.cdo04.editor.labeling;
import org.eclipse.emf.parsley.binding.ControlObservablePair;
import org.eclipse.emf.parsley.binding.FormControlFactory;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.DateTime;
public class DemoBindingFactory extends EmfSwtBindingFactory {
public ControlObservablePair control_Order_date(EStructuralFeature feature) {
DateTime dateTime= new DateTime(getParent(), SWT.DROP_DOWN);
getToolkit().adapt(dateTime);
return new ControlObservablePair(dateTime, SWTObservables.observeSelection(dateTime));
}
}