blob: e1a3a10ff64aea2c7ded8a18c81f67c8621c00d2 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.pattern.strategy.modeldriven;
import java.util.Map;
import org.eclipse.egf.model.pattern.CallBackHandler;
import org.eclipse.egf.model.pattern.DomainVisitor;
import org.eclipse.egf.model.pattern.PatternContext;
import org.eclipse.egf.model.pattern.PatternException;
import org.eclipse.egf.pattern.Messages;
/**
* @author Thomas Guiu
*
*/
public class ModelDrivenCallBackHandler implements CallBackHandler {
public void handleCall(PatternContext ctx, Map<String, Object> parameters) throws PatternException {
if (parameters.size() != 1)
throw new IllegalStateException(Messages.model_driven_strategy_error1);
DomainVisitor visitor = (DomainVisitor) ctx.getValue(PatternContext.MODEL_DRIVEN_DOMAIN_VISITOR);
if (visitor != null)
visitor.visit(ctx, parameters.values().iterator().next());
}
}