/******************************************************************************* * Copyright (c) 2014 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 *******************************************************************************/ package org.eclipse.ocl.examples.codegen.library; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.eclipse.ocl.pivot.evaluation.Executor; import org.eclipse.ocl.pivot.ids.TypeId; import org.eclipse.ocl.pivot.library.AbstractBinaryOperation; /** * The instance of NativeVisitorOperation supports evaluation of an operation using native language facilities * (i.e X.visitorOperation()) when code generated). */ public class NativeVisitorOperation extends AbstractBinaryOperation { public static final @NonNull NativeVisitorOperation INSTANCE = new NativeVisitorOperation(); public NativeVisitorOperation() {} // @Override // public @Nullable Object dispatch(@NonNull Executor executor, @NonNull DomainCallExp callExp, @Nullable Object sourceValue) { // throw new UnsupportedOperationException(); // Only evaluated in code generated form; see CG2JavaVisitor.visitCGNativeOperationCallExp // } @Override public @Nullable Object evaluate(@NonNull Executor executor, @NonNull TypeId returnTypeId, @Nullable Object sourceValue, @Nullable Object argumentValue) { throw new UnsupportedOperationException(); // Only evaluated in code generated form; see CG2JavaVisitor.visitCGNativeOperationCallExp } }