Skip to main content
summaryrefslogblamecommitdiffstats
blob: 98bc51270bffbbdf69258a70f9cfb3f12e531d9a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                                                
                                      









                                                                                 




                                                                           
                                                                                                                   
                                           

                                     


                                       
/*******************************************************************************
 *  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);
	}
}

Back to the top