blob: 98e0d7cc4423428590170bf0feef2374909ac267 [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:
* Gregoire Dupe (Mia-Software) - initial API and implementation
*****************************************************************************/
package org.eclipse.modisco.facet.widgets.celleditors;
import org.eclipse.core.runtime.IStatus;
/** Used to validate the value of a cell editor. */
public interface IValidator {
/**
* Validates the given value for the cell editor.
*
* @return an {@link IStatus} with a status of {@link IStatus#OK} if the given value is valid,
* or with a status of {@link IStatus#ERROR} otherwise.
*/
IStatus validate(Object value);
}