blob: 02a0d865bf473516c8c7eacf80ccf4ef8a9c8d86 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
* Jeremie TATIBOUET (CEA LIST) - Animation refactoring and improvements
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.Semantics.impl.Loci.LociL1;
import org.eclipse.papyrus.moka.fuml.Semantics.Loci.LociL1.ISemanticVisitor;
public abstract class SemanticVisitor implements ISemanticVisitor {
public void _endIsolation() {
// System.out.println("_endIsolation");
}
public void _beginIsolation() {
// System.out.println("_beginIsolation");
}
}