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