blob: 6bdc55c5bc4c39981c44c764ff9ab1bd2e6e73ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 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.jpa.eclipselink.ui.internal.details.java;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.jpa.core.context.java.JavaEntity;
import org.eclipse.jpt.jpa.eclipselink.core.context.java.JavaEclipseLinkEntity;
import org.eclipse.swt.widgets.Composite;
/**
* The pane used for an EclipseLink 2.0 Java entity.
*
* @see JavaEclipseLinkEntity
* @see EclipselinkJpaUiFactory - The factory creating this pane
*
* @version 3.1
* @since 2.2
*/
public class JavaEclipseLinkEntity2_0Composite
extends AbstractJavaEclipseLinkEntity2_xComposite
{
/**
* Creates a new <code>EclipseLinkJavaEntityComposite</code>.
*
* @param subjectHolder The holder of the subject <code>JavaEntity</code>
* @param parent The parent container
* @param widgetFactory The factory used to create various common widgets
*/
public JavaEclipseLinkEntity2_0Composite(
PropertyValueModel<? extends JavaEntity> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
}