blob: b07ccc6057a92ec369f2a93ff6222056aff2b0b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.ui.internal.details;
import org.eclipse.jpt.core.context.EmbeddedMapping;
import org.eclipse.jpt.ui.WidgetFactory;
import org.eclipse.jpt.ui.details.JpaComposite;
import org.eclipse.jpt.ui.internal.widgets.FormPane;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | ------------------------------------------------------------------------- |
* | | | |
* | | EmbeddedAttributeOverridesComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see EmbeddedMapping
*
* @version 3.0
* @since 1.0
*/
public class EmbeddedMappingComposite extends FormPane<EmbeddedMapping>
implements JpaComposite
{
/**
* Creates a new <code>EmbeddedMappingComposite</code>.
*
* @param subjectHolder The holder of the subject <code>EmbeddedMapping</code>
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public EmbeddedMappingComposite(PropertyValueModel<? extends EmbeddedMapping> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
@Override
protected void initializeLayout(Composite container) {
new EmbeddedMappingOverridesComposite(
this,
container
);
}
}