blob: a41f75c88e27985f52c25f806b6831b3b93809ed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Borland Software Corporation and others.
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.blackbox;
import org.eclipse.emf.common.util.URI;
/**
* FIXME - temp solution due to #264335, mixing CFile, URI based context
*/
public class ResolutionContextImpl implements ResolutionContext {
private URI fURI;
public ResolutionContextImpl(URI contextURI) {
if(contextURI == null) {
throw new IllegalArgumentException();
}
fURI = contextURI;
}
@Override
public String toString() {
return "Resolution context (" + fURI.toString() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
}
}