blob: e12720586f9f34bc42098261959d42ec6908ebf4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.ui.internal.details.orm;
import org.eclipse.jface.resource.ResourceManager;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.jpa.ui.details.JpaDetailsPageManager;
import org.eclipse.jpt.jpa.ui.details.JpaDetailsProvider;
import org.eclipse.jpt.jpa.ui.internal.details.AbstractEntityMappingsDetailsProvider;
import org.eclipse.swt.widgets.Composite;
/**
* This provider is responsible for creating the {@link JpaDetailsPageManager}
* when the information comes from the XML file (either from the persistence
* configuration or from the Mappings Descriptor).
*
* @version 3.3
* @since 2.2
*/
public class EclipseLinkEntityMappingsDetailsProvider2_0
extends AbstractEntityMappingsDetailsProvider
{
// singleton
private static final JpaDetailsProvider INSTANCE = new EclipseLinkEntityMappingsDetailsProvider2_0();
/**
* Return the singleton
*/
public static JpaDetailsProvider instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private EclipseLinkEntityMappingsDetailsProvider2_0() {
super();
}
public JpaDetailsPageManager buildDetailsPageManager(Composite parent, WidgetFactory widgetFactory, ResourceManager resourceManager) {
return new EclipseLinkEntityMappingsDetailsPageManager2_0(parent, widgetFactory, resourceManager);
}
}