blob: 5351f6a3e1bc7836d4fe06567ef4dbde02e1b9b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 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.jpa.ui.internal.jpa2.platform.generic;
import org.eclipse.jpt.jpa.ui.JpaPlatformUi;
import org.eclipse.jpt.jpa.ui.JpaPlatformUiFactory;
import org.eclipse.jpt.jpa.ui.internal.jpa2.Generic2_0JpaPlatformUiProvider;
import org.eclipse.jpt.jpa.ui.internal.platform.generic.GenericJpaPlatformUi;
import org.eclipse.jpt.jpa.ui.internal.platform.generic.GenericJpaPlatformUiFactory;
public class Generic2_0JpaPlatformUiFactory
implements JpaPlatformUiFactory
{
/**
* Zero arg constructor for extension point
*/
public Generic2_0JpaPlatformUiFactory() {
super();
}
public JpaPlatformUi buildJpaPlatformUi() {
return new GenericJpaPlatformUi(
GenericJpaPlatformUiFactory.NAVIGATOR_FACTORY_PROVIDER,
Generic2_0JpaPlatformUiProvider.instance()
);
}
}