blob: 95fde5718f4b7186d46dcc7ed473a59db479c6f4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Brad Reynolds - bug 159539
******************************************************************************/
package org.eclipse.jface.examples.databinding;
import org.eclipse.jface.databinding.DataBindingContext;
import org.eclipse.jface.databinding.beans.BeansObservables;
import org.eclipse.jface.databinding.observable.list.WritableList;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.jface.examples.databinding.model.SimplePerson;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
/**
* @since 3.2
*
*/
public class HelloWorld {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
DataBindingContext dbc = DataBindingContext.withDefaults();
Combo combo = new Combo(shell, SWT.READ_ONLY);
WritableList list = new WritableList();
list.add("Hello");
list.add("Bonjour");
list.add("Guten Tag");
dbc.bindList(SWTObservables.getItems(combo), list, null);
combo.select(0);
Text text = new Text(shell, SWT.BORDER);
SimplePerson person = new SimplePerson("Boris", "1234 Carling Ave",
"Ottawa", "Canada");
dbc.bindValue(SWTObservables.getText(text, SWT.Modify),
BeansObservables.getAttribute(person, "name"), null);
GridLayoutFactory.swtDefaults().numColumns(2).generateLayout(shell);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}