blob: 80afc3538f4b5879016d92b520f5803d49e22ecd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 University of Illinois at Urbana-Champaign 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:
* UIUC - Initial API and implementation
*******************************************************************************/
package org.eclipse.photran.internal.ui.vpg;
import org.eclipse.photran.internal.core.vpg.PhotranVPG;
import org.eclipse.rephraserengine.core.vpg.eclipse.EclipseVPG;
import org.eclipse.rephraserengine.ui.IEclipseVPGFactory;
/**
* This class gives the Rephraser Engine's common UI actions access to
* Photran's VPG.
*
* @author Jeff Overbey
*/
public class PhotranVPGContribution implements IEclipseVPGFactory
{
@SuppressWarnings("rawtypes")
public EclipseVPG getVPG()
{
return PhotranVPG.getInstance();
}
}