blob: aab2f5f2f8ee06f917cf115a520bae09e4cd57b3 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2004, 2006 IBM 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.examples.runtime.diagram.geoshapes.internal.providers;
import java.util.HashMap;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.gmf.examples.runtime.diagram.geoshapes.internal.views.factories.GeoshapesDiagramViewFactory;
import org.eclipse.gmf.runtime.diagram.core.providers.AbstractViewProvider;
/**
*
* @author qili
* @canBeSeenBy org.eclipse.gmf.examples.runtime.diagram.geoshapes.*
*
* View provider for the geoshape diagram.
*/
public class DiagramViewProvider extends AbstractViewProvider {
HashMap diagramMap = new HashMap();
{
diagramMap.put("Geoshape", GeoshapesDiagramViewFactory.class);//$NON-NLS-1$
}
/**
* @see org.eclipse.gmf.runtime.diagram.ui.internal.services.view.AbstractViewProvider#getDiagramViewClass(IAdaptable, java.lang.String)
*/
protected Class getDiagramViewClass(IAdaptable semanticAdapter, String diagramKind) {
return (Class) diagramMap.get(diagramKind);
}
}