blob: 36fdf9c6630221f8309cd05bf1234716acff0c1b [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2018 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:
* David Lopez david.lopez@cea.fr(CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.ease.semantics.proxy;
import org.eclipse.uml2.uml.StructuralFeature;
public interface ProxyAdapter<ValueType> {
public Object getProxyFor(ValueType value);
public ValueType getValueFor(StructuralFeature feature, Object proxied);
}