blob: 1fef0cfaba86662dbd711cada6fb52bd109549fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Peter Pasztor, Akos Horvath, Gergely Varro, Istvan Rath and Daniel Varro
* 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:
* Peter Pasztor, Akos Horvath, Gergely Varro, Istvan Rath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.interpreter.term.rules;
/**
The class stores Java native objects that have been
received from evaluating a NativeFunctionInvocation.
* @author Peter Pasztor, Akos Horvath
*
*/
public class JavaNativeValue {
private Object value;
public JavaNativeValue(Object object) {
value = object;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}