blob: 2210b8cde35d0bdd64217e7f2936da423bfb05fd [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2005, 2010 SAP AG.
* 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:
* Stefan Dimov - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.jpt.jpadiagrameditor.ui.internal.modelintegration.util;
import org.eclipse.graphiti.mm.pictograms.Diagram;
import org.eclipse.jpt.jpa.core.JpaProject;
public class ModelIntegrationUtilImpl implements IModelIntegrationUtil {
public JpaProject getProjectByDiagram(Diagram diagram) {
return ModelIntegrationUtil.getProjectByDiagram(diagram);
}
}