blob: 8bb88fb861aeb03d8ad48852fb0fca10f49e62c9 [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.VersionMapping;
import org.eclipse.jpt.ui.WidgetFactory;
import org.eclipse.jpt.ui.internal.BaseJpaUiFactory;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | ------------------------------------------------------------------------- |
* | | | |
* | | ColumnComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* | ------------------------------------------------------------------------- |
* | | | |
* | | TemporalTypeComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see VersionMapping
* @see BaseJpaUiFactory - The factory creating this pane
* @see ColumnComposite
* @see TemporalTypeComposite
*
* @version 2.0
* @since 1.0
*/
public class VersionMappingComposite
extends AbstractVersionMappingComposite<VersionMapping>
{
/**
* Creates a new <code>VersionMappingComposite</code>.
*
* @param subjectHolder The holder of the subject <code>IVersionMapping</code>
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public VersionMappingComposite(PropertyValueModel<? extends VersionMapping> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
@Override
protected void initializeLayout(Composite container) {
// Column widgets
new ColumnComposite(this, buildColumnHolder(), container);
initializeConversionPane(container);
}
}