blob: c888f54f97bf4e183fcb5798da24144176d77d3d [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.activity.api.hyperlinkadapter;
import org.eclipse.amalgam.explorer.activity.api.manager.ActivityExplorerManager;
public class NewDiagramHyperLinkAdapter extends AbstractNewDiagramHyperlinkAdapter {
protected String name;
public NewDiagramHyperLinkAdapter() {
super(ActivityExplorerManager.INSTANCE.getRootSemanticModel(), ActivityExplorerManager.INSTANCE.getSession());
}
@Override
public String getRepresentationName() {
return name;
}
}