blob: f7ba55ff5e572b12396f977c275b1c1c67812d17 [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
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.jface.databinding.DataBinding;
import org.eclipse.jface.databinding.IDataBindingContext;
import org.eclipse.jface.databinding.IUpdatableFactory;
import org.eclipse.jface.databinding.Property;
import org.eclipse.jface.databinding.SelectionAwareUpdatableCollection;
import org.eclipse.jface.databinding.swt.SWTProperties;
import org.eclipse.jface.databinding.swt.SWTUpdatableFactory;
import org.eclipse.jface.tests.databinding.scenarios.BindingScenariosTestSuite;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Shell;
/**
* @since 3.2
*
*/
public class ComboUpdatableCollectionTest extends AbstractGetAndSetSelectionUpdatableCollectionTest {
/*
* Test method for 'org.eclipse.jface.internal.databinding.swt.CComboUpdatableCollection.getSelectedObject()'
*/
private Combo combo;
protected SelectionAwareUpdatableCollection getSelectionAwareUpdatable(String[] values) {
Shell shell = BindingScenariosTestSuite.getShell();
this.combo = new Combo(shell, SWT.NONE);
for (int i = 0; i < values.length; i++) {
this.combo.add(values[i]);
}
IDataBindingContext ctx = DataBinding.createContext(new IUpdatableFactory[] {new SWTUpdatableFactory()});
return (SelectionAwareUpdatableCollection) ctx.createUpdatable(new Property(combo, SWTProperties.ITEMS, String.class, new Boolean(true)));
}
protected Object getSelectedObjectOfControl() {
int selectionIndex = this.combo.getSelectionIndex();
if (selectionIndex != -1) {
return this.combo.getItem(selectionIndex);
}
return null;
}
protected void setSelectedValueOfControl(String value) {
this.combo.select(this.combo.indexOf(value));
}
}