blob: 250e9bd3327d0751f61faf179549d8058a913191 [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;
public class ScriptProxy {
private static KernelProxyAdapter kernelAdapter = new KernelProxyAdapter();
private static ValueSpecificationProxyAdapter instanceValueAdapter = new ValueSpecificationProxyAdapter();
public static KernelProxyAdapter getKernelAdapter() {
return kernelAdapter;
}
public static ValueSpecificationProxyAdapter getInstanceValueAdapter() {
return instanceValueAdapter;
}
}