blob: c80381caa5a8637e5fc13f35963c94d2b0f88d8b [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2018 CEA LIST.
*
*
* 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.interactions.interfaces.semantics.interactions;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IObject_;
import org.eclipse.uml2.uml.Element;
public interface IInteractionSemanticVisitor extends ISuspendableInteractionVisitor{
public void setParent(ISuspendableInteractionVisitor parent);
public ISuspendableInteractionVisitor getParent();
public void setNode(Element node);
public Element getNode();
public IObject_ getExecutionContext();
public ILifeLineExecution getLifelineExecution();
}