blob: ba1176e3f729023eda8ae641bf6437fe4903b74d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.eclipselink.ui.internal.details.java;
import org.eclipse.jpt.core.context.java.JavaEntity;
import org.eclipse.jpt.eclipselink.core.context.java.JavaEclipseLinkEntity;
import org.eclipse.jpt.ui.WidgetFactory;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* The pane used for an EclipseLink Java entity.
*
* @see JavaEclipseLinkEntity
* @see EclipselinkJpaUiFactory - The factory creating this pane
*
* @version 2.1
* @since 2.1
*/
public class JavaEclipseLinkEntityComposite
extends AbstractJavaEclipseLinkEntityComposite<JavaEntity>
{
/**
* 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 JavaEclipseLinkEntityComposite(
PropertyValueModel<? extends JavaEntity> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
super(subjectHolder, parent, widgetFactory);
}
}