blob: c41d7a9a9bce33b58bed65e049a95c7f90cc314a [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 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:
* David Lopez david.lopez@cea.fr(CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.engine.suml.python;
public class PythonObjectBridge<T> {
private T object;
public T pull() {
return object;
}
public void push(T object) {
this.object = object;
}
}