blob: bd6e257357fba2472f8a6fa90c8dcb76b4df25a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Oracle. 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:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.eclipselink.ui.internal.platform;
import org.eclipse.jpt.eclipselink.ui.internal.EclipseLink1_1JpaUiFactory;
public class EclipseLink1_1JpaPlatformUi
extends EclipseLinkJpaPlatformUi //TODO just extend for now, but we need to change this to match the JpaPlatform
{
public EclipseLink1_1JpaPlatformUi() {
super();
}
@Override
protected EclipseLink1_1JpaUiFactory buildJpaUiFactory() {
return new EclipseLink1_1JpaUiFactory();
}
}