blob: 0c9ec4c6dfab135123c295883e8ebac3decae2eb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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.jpa.ui.internal.details.orm;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.ui.internal.widgets.EnumFormComboViewer;
import org.eclipse.jpt.jpa.core.context.orm.EntityMappings;
import org.eclipse.jpt.jpa.ui.internal.details.db.CatalogCombo;
import org.eclipse.jpt.jpa.ui.internal.details.db.SchemaCombo;
import org.eclipse.swt.widgets.Composite;
/**
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | ------------------------------------------------------------------------- |
* | | | |
* | | XmlPackageChooser | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------ |
* | Schema: | SchemaCombo | |
* | ------------------------------------------------------------ |
* | ------------------------------------------------------------ |
* | Catalog: | CatalogCombo | |
* | ------------------------------------------------------------ |
* | ------------------------------------------------------------ |
* | Access Type: | |v| |
* | ------------------------------------------------------------ |
* | |
* | ------------------------------------------------------------------------- |
* | | | |
* | | PersistenceUnitMetadataComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | OrmGeneratorsComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | OrmQueriesComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see EntityMappings
* @see EntityMappingsDetailsPage - The parent container
* @see CatalogCombo
* @see EnumFormComboViewer
* @see EntityMappingsGeneratorsComposite
* @see OrmPackageChooser
* @see OrmQueriesComposite
* @see PersistenceUnitMetadataComposite
* @see SchemaCombo
*
* @version 2.2
* @since 2.0
*/
public class EntityMappingsDetailsPage extends AbstractEntityMappingsDetailsPage
{
/**
* Creates a new <code>EntityMappingsDetailsPage</code>.
*
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public EntityMappingsDetailsPage(Composite parent,
WidgetFactory widgetFactory) {
super(parent, widgetFactory);
}
}