blob: 5d5e18f5568db09f9fe7278d077a134ee11f4949 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.ui.internal.persistence.general;
import org.eclipse.jface.resource.ResourceManager;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnit;
import org.eclipse.jpt.jpa.ui.internal.persistence.PersistenceUnitGeneralEditorPage;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
public class EclipseLinkPersistenceUnitGeneralEditorPage
extends PersistenceUnitGeneralEditorPage
{
public EclipseLinkPersistenceUnitGeneralEditorPage(
PropertyValueModel<PersistenceUnit> subjectHolder,
Composite parent,
WidgetFactory widgetFactory,
ResourceManager resourceManager) {
super(subjectHolder, parent, widgetFactory, resourceManager);
}
@Override
protected Control buildMappingFilesComposite(Composite parentComposite) {
return new EclipseLinkPersistenceUnitMappingFilesComposite(this, parentComposite).getControl();
}
@Override
protected Control buildJarFilesComposite(Composite parentComposite) {
return new EclipseLinkPersistenceUnitJarFilesComposite(this, parentComposite).getControl();
}
}