blob: 74d35df6a1ab95fafcf29345f07d066d41137a2f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Oracle Corporation and others.
* 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.fnmeta.model.proxy;
import org.eclipse.bpel.fnmeta.model.impl.AssistantImpl;
import org.eclipse.emf.common.util.URI;
/**
* @author Michal Chmielewski (michal.chmielewski@oracle.com)
* @date Aug 3, 2007
*
*/
@SuppressWarnings("nls")
public class AssistantProxy extends AssistantImpl {
URI fURI;
String fName;
/**
* @param baseURI
* @param aName
*/
public AssistantProxy (URI baseURI, String aName) {
fURI = baseURI;
fName = aName;
}
/**
* @see org.eclipse.emf.ecore.impl.EObjectImpl#eIsProxy()
*/
@Override
public boolean eIsProxy() {
return true;
}
/**
* @see org.eclipse.emf.ecore.impl.BasicEObjectImpl#eProxyURI()
*/
@Override
public URI eProxyURI() {
return fURI.appendFragment("assistant=" + fName);
}
/**
* @see org.eclipse.bpel.fnmeta.model.impl.AssistantImpl#getName()
*/
@Override
public String getName() {
return fName;
}
}