blob: c14e12ade615c2bb3acfe3295597ac480687ee2b [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.ui.internal.details.java;
import org.eclipse.jface.resource.ResourceManager;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jpa.ui.details.JpaDetailsPageManager;
import org.eclipse.jpt.jpa.ui.details.JpaDetailsProvider;
import org.eclipse.swt.widgets.Composite;
/**
* This provider is responsible for creating the <code>JpaDetailsPage</code>
* when the information comes from the Java source file.
*/
public class JavaPersistentAttributeDetailsProvider
implements JpaDetailsProvider
{
// singleton
private static final JpaDetailsProvider INSTANCE = new JavaPersistentAttributeDetailsProvider();
/**
* Return the singleton
*/
public static JpaDetailsProvider instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private JavaPersistentAttributeDetailsProvider() {
super();
}
public Class<JavaPersistentAttribute> getStructureType() {
return JavaPersistentAttribute.class;
}
public JpaDetailsPageManager buildDetailsPageManager(Composite parent, WidgetFactory widgetFactory, ResourceManager resourceManager) {
return new JavaPersistentAttributeDetailsPageManager(parent, widgetFactory, resourceManager);
}
}