blob: 08beec7d63e4d75c8a38254180b37f612dd7ed6a [file] [log] [blame]
/**
* Copyright (c) 2011 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.ecp.core.util;
import org.eclipse.emf.common.notify.impl.AdapterImpl;
/**
* @author Eike Stepper
*/
public class ECPModelContextAdapter extends AdapterImpl
{
private final ECPModelContext context;
public ECPModelContextAdapter(ECPModelContext context)
{
this.context = context;
}
public final ECPModelContext getContext()
{
return context;
}
}