/***************************************************************************** * Copyright (c) 2011 CEA LIST. * * 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: * * CEA LIST - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.diagram.pkg.provider; import static org.eclipse.papyrus.infra.core.Activator.log; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.gmf.runtime.diagram.core.providers.AbstractViewProvider; import org.eclipse.gmf.runtime.diagram.core.services.view.CreateDiagramViewOperation; import org.eclipse.papyrus.uml.diagram.pkg.factory.PackageDiagramViewFactory; public class PackageDiagramViewProvider extends AbstractViewProvider { @Override protected boolean provides(CreateDiagramViewOperation operation) { if(ElementTypes.DIAGRAM_ID.equals(operation.getSemanticHint())) { return true; } return false; } @Override protected Class<?> getDiagramViewClass(IAdaptable semanticAdapter, String diagramKind) { if(ElementTypes.DIAGRAM_ID.equals(diagramKind)) { return PackageDiagramViewFactory.class; } log.error(new Exception("Could not create View.")); return null; } }