blob: 84dbb8b7625e903c3cb6bd23b379d4ffd4a28033 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.details;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.ui.internal.widgets.Pane;
import org.eclipse.jpt.core.context.TransientMapping;
import org.eclipse.jpt.ui.details.JpaComposite;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* This pane does not have any widgets.
*
* @see TransientMapping
*
* @version 2.0
* @since 1.0
*/
public class TransientMappingComposite extends Pane<TransientMapping>
implements JpaComposite
{
/**
* Creates a new <code>TransientMappingComposite</code>.
*
* @param subjectHolder The holder of the subject <code>ITransientMapping</code>
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public TransientMappingComposite(PropertyValueModel<? extends TransientMapping> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
/*
* (non-Javadoc)
*/
@Override
protected void initializeLayout(Composite container) {
}
}