blob: a1649966bb39dfc1fa5a3dd6ed8ab97fc753a180 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 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 Bros (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.modisco.facet.widgets.celleditors;
public interface IModelCellEditHandler {
/**
* Commit the value currently in the cell editor. This will get the value
* through {@link IModelCellEditor#getValue()} and set it on the model
* element under the cell.
*/
void commit();
}