blob: 4ff6b24cb492e2ce0052bb93275c184f313c784e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.jpa2.details;
import org.eclipse.jpt.core.context.OneToManyRelationshipReference;
import org.eclipse.jpt.core.jpa2.context.OneToManyRelationshipReference2_0;
import org.eclipse.jpt.ui.internal.details.JoinColumnJoiningStrategyPane;
import org.eclipse.jpt.ui.internal.details.JoinTableJoiningStrategyPane;
import org.eclipse.jpt.ui.internal.details.JptUiDetailsMessages;
import org.eclipse.jpt.ui.internal.details.MappedByJoiningStrategyPane;
import org.eclipse.jpt.ui.internal.widgets.Pane;
import org.eclipse.jpt.utility.internal.model.value.SimplePropertyValueModel;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* Here is the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | - Joining Strategy ------------------------------------------------------ |
* | | | |
* | | o MappedByJoiningStrategyPane _______________________________________ | |
* | | | | | |
* | | | | | |
* | | --------------------------------------------------------------------- | |
* | | o JoinTableStrategyPane _____________________________________________ | |
* | | | | | |
* | | | | | |
* | | --------------------------------------------------------------------- | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see {@link OneToManyMapping}
* @see {@link OneToManyRelationshipReference}
* @see {@link OrmOneToManyMappingComposite}
* @see {@link MappedByStrategyPane}
* @see {@link JoinTableStrategyPane}
*
* @version 2.3
* @since 2.1
*/
public class OneToManyJoiningStrategy2_0Pane
extends Pane<OneToManyRelationshipReference2_0>
{
public OneToManyJoiningStrategy2_0Pane(
Pane<?> parentPane,
PropertyValueModel<? extends OneToManyRelationshipReference2_0> subjectHolder,
Composite parent) {
super(parentPane, subjectHolder, parent);
}
@Override
protected void initializeLayout(Composite container) {
Composite composite = addCollapsibleSection(
container,
JptUiDetailsMessages.Joining_title,
new SimplePropertyValueModel<Boolean>(Boolean.TRUE));
addRadioButton(
composite,
JptUiDetailsMessages.Joining_mappedByLabel,
MappedByJoiningStrategyPane.buildUsesMappedByJoiningStrategyHolder(getSubjectHolder()),
null);
new MappedByJoiningStrategyPane(this, composite);
addRadioButton(
composite,
JptUiDetailsMessages.Joining_joinColumnJoiningLabel,
JoinColumnJoiningStrategyPane.buildUsesJoinColumnJoiningStrategyHolder(getSubjectHolder()),
null);
JoinColumnJoiningStrategyPane.
buildJoinColumnJoiningStrategyPaneWithIncludeOverrideCheckBox(this, composite);
addRadioButton(
composite,
JptUiDetailsMessages.Joining_joinTableJoiningLabel,
JoinTableJoiningStrategyPane.buildUsesJoinTableJoiningStrategyHolder(getSubjectHolder()),
null);
new JoinTableJoiningStrategyPane(this, composite);
addSubPane(composite, 5);
}
}