blob: a809ac443822c408d35825340c1d242a97ae77c2 [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 java.util.Arrays;
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.SWTUpdatableFactory;
import org.eclipse.jface.databinding.viewers.ViewersProperties;
import org.eclipse.jface.tests.databinding.scenarios.BindingScenariosTestSuite;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;
/**
* @since 3.2
*
*/
public class TableViewerUpdatableCollectionTest extends AbstractGetAndSetSelectionUpdatableCollectionTest {
/*
* Test method for 'org.eclipse.jface.internal.databinding.swt.CComboUpdatableCollection.getSelectedObject()'
*/
private TableViewer viewer;
protected SelectionAwareUpdatableCollection getSelectionAwareUpdatable(String[] values) {
Shell shell = BindingScenariosTestSuite.getShell();
this.viewer = new TableViewer(shell, SWT.NONE);
IDataBindingContext ctx = DataBinding.createContext(new IUpdatableFactory[] {new SWTUpdatableFactory()});
SelectionAwareUpdatableCollection updatableCollection = (SelectionAwareUpdatableCollection) ctx.createUpdatable(new Property(viewer, ViewersProperties.CONTENT, String.class, new Boolean(true)));
updatableCollection.setElements(Arrays.asList(values));
return updatableCollection;
}
protected Object getSelectedObjectOfControl() {
StructuredSelection selection = (StructuredSelection) this.viewer.getSelection();
if (selection.isEmpty()) {
return null;
}
return selection.getFirstElement();
}
protected void setSelectedValueOfControl(String value) {
this.viewer.setSelection(new StructuredSelection(new String[]{value}));
}
}