blob: b4411fcaf400c4135223b617b2869a3b5358a689 [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.details.orm;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.utility.internal.Tools;
import org.eclipse.jpt.jpa.core.JpaStructureNode;
import org.eclipse.jpt.jpa.core.JptJpaCorePlugin;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute;
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 {@link JpaDetailsPageManager}
* when the information comes from the XML file (either from the persistence
* configuration or from the Mappings Descriptor).
*/
public class OrmPersistentAttributeDetailsProvider
implements JpaDetailsProvider
{
// singleton
private static final JpaDetailsProvider INSTANCE = new OrmPersistentAttributeDetailsProvider();
/**
* Return the singleton
*/
public static JpaDetailsProvider instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private OrmPersistentAttributeDetailsProvider() {
super();
}
public boolean providesDetails(JpaStructureNode structureNode) {
return Tools.valuesAreEqual(structureNode.getType(), OrmPersistentAttribute.class)
&& structureNode.getResourceType().getContentType().isKindOf(JptJpaCorePlugin.MAPPING_FILE_CONTENT_TYPE);
}
public JpaDetailsPageManager<OrmReadOnlyPersistentAttribute> buildDetailsPageManager(
Composite parent,
WidgetFactory widgetFactory) {
return new OrmPersistentAttributeDetailsPage(parent, widgetFactory);
}
}