blob: 98bc51270bffbbdf69258a70f9cfb3f12e531d9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.eclipselink.ui.internal.wizards;
import org.eclipse.jpt.ui.internal.wizards.orm.MappingFileWizardPage;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
public class EclipseLinkMappingFileWizardPage extends MappingFileWizardPage
{
public EclipseLinkMappingFileWizardPage(IDataModel dataModel, String pageName, String title, String desc) {
super(dataModel, pageName);
setTitle(title);
setDescription(desc);
setPageComplete(false);
}
}