blob: 9ddcb5cd0aed9f463577077339108ff658573588 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2016 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.core.internal.jpa1;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jpt.jpa.core.JpaProject;
import org.eclipse.jpt.jpa.core.internal.AbstractJpaProject;
/**
* Not much different from the abstract JPA project.
*/
public class GenericJpaProject
extends AbstractJpaProject
{
// ********** constructor/initialization **********
public GenericJpaProject(JpaProject.Config config, IProgressMonitor monitor) {
super(config, monitor);
}
}