blob: b62b1337921b47ee8a79f5e2b0f39ee06b3e88fb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.synchronizer;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.sirius.ext.base.Option;
import org.eclipse.sirius.ext.base.Options;
/**
* This class is responsible to hook the evaluation of a semantic partition if
* it is able to retrieve the expected result sooner.
*
* @author Cedric Brun <cedric.brun@obeo.fr>
*
*/
public class SemanticPartitionInvalidator {
public Option<EvaluatedSemanticPartition> hasFastResult(EObject sourceElement, SemanticPartition semanticPartition, CreatedOutput parentElement) {
return Options.newNone();
}
}