blob: 27e1a158e37c7d92f41226c4bfc1901fb2912ce7 [file] [log] [blame]
/**
* This file was copied and re-packaged automatically by
* org.eclipse.ocl.examples.build.GenerateAutoCSModels.mwe2
* from
* ..\..\..\org.eclipse.qvtd\plugins\org.eclipse.qvtd.runtime\src\org\eclipse\qvtd\runtime\evaluation\ExecutionVisitor.java
*
* Do not edit this file.
*/
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations and others.
* 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:
* E.D.Willink - Initial API and implementation
*
* This code is auto-generated
* from: org.eclipse.ocl.pivot/model/Pivot.genmodel
*
* Only the copyright statement is editable.
*******************************************************************************/
package org.eclipse.ocl.pivot.evaluation.tx;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
/**
* @since 1.1
*/
public interface ExecutionVisitor<R>
{
/**
* Return the result of visiting a visitable for which no more specific pivot type method
* is available.
*/
// @Nullable R visiting(@NonNull ExecutionVisitable visitable);
@Nullable R visitInvocation(@NonNull Invocation object);
@Nullable R visitInvocationManager(@NonNull InvocationManager object);
@Nullable R visitObjectManager(@NonNull ObjectManager object);
@Nullable R visitSlotState(@NonNull SlotState object);
@Nullable R visitTransformer(@NonNull Transformer object);
}