blob: 3e48bfe974572e8b8db9e16317a56975f19b8547 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006, 2015 THALES GLOBAL SERVICES.
* 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:
* Thales - initial API and implementation
*****************************************************************************/
package org.eclipse.amalgam.explorer.contextual.core.provider.impl;
import org.eclipse.amalgam.explorer.contextual.core.model.IExplorerContextualModel;
import org.eclipse.amalgam.explorer.contextual.core.provider.AbstractContentProvider;
import org.eclipse.emf.common.notify.AdapterFactory;
/**
*/
public class CurrentElementCP extends AbstractContentProvider {
/**
* Constructor.
* @param adapterFactory_p
*/
public CurrentElementCP(AdapterFactory adapterFactory_p, IExplorerContextualModel model_p) {
super(adapterFactory_p, model_p);
}
/**
* {@inheritDoc}
*/
@Override
public String getExplorerId() {
return ID_CURRENT_CP;
}
}