blob: afb83ea27ab4bddc5442a361f20f813f45a82e73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Guyomar (Mia-Software) - Bug 342451 - To be able to edit derived facet attributes and derived facet references in a table
*******************************************************************************/
package org.eclipse.modisco.facet.widgets.celleditors;
import java.util.List;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
public interface INaryEAttributeCellEditor<T extends Object> {
/**
* Initialize a cell for edition of a n-ary feature. This method must create
* a control inside the given parent to let the user edit the value.
*
* @param parent
* the SWT control that must contain the cell editor
* @param values
* the actual values of the reference
* @param feature
* the feature
* @param eObject
* the {@link EObject} being currently edited.
* @param editHandler
* @return the SWT {@link Control} to be used for capturing the new cell
* value
*/
Control activateCell(Composite parent, List<T> values, IModelCellEditHandler editHandler, EObject eObject, EStructuralFeature feature);
/**
* @return the value currently in the control. This is the value that will
* be set on the model element when
* {@link IModelCellEditHandler#commit()} is called.
*/
List<T> getValue();
}