blob: 7ee8a3c70c98573ba0438401a763760ab80e9a5b [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.OneToOneMapping;
import org.eclipse.jpt.ui.WidgetFactory;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | ------------------------------------------------------------------------- |
* | | | |
* | | TargetEntityComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | JoiningStrategyComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | FetchTypeComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | OptionalComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | CascadeComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see OneToOneMapping
* @see TargetEntityComposite
* @see JoiningStrategyComposite
* @see FetchTypeComposite
* @see OptionalComposite
* @see CascadeComposite
*
* @version 2.0
* @since 1.0
*/
public class OneToOneMappingComposite
extends AbstractOneToOneMappingComposite<OneToOneMapping>
{
/**
* Creates a new <code>OneToOneMappingComposite</code>.
*
* @param subjectHolder The holder of the subject <code>IOneToOneMapping</code>
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public OneToOneMappingComposite(PropertyValueModel<? extends OneToOneMapping> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
@Override
protected void initializeLayout(Composite container) {
int groupBoxMargin = getGroupBoxMargin();
new TargetEntityComposite(this, addPane(container, groupBoxMargin));
new OneToOneJoiningStrategyPane(this, buildJoiningHolder(), container);
new FetchTypeComposite(this, addPane(container, groupBoxMargin));
new OptionalComposite(this, addPane(container, groupBoxMargin));
new CascadeComposite(this, buildCascadeHolder(), addSubPane(container, 5));
}
}