blob: 5fdd73fc23cbe52932c3e8fc39723fa822ae67fb [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.jpt.core.internal.AbstractJpaProject;
import org.eclipse.jpt.core.jpa2.JpaProject2_0;
/**
* Not much different from the abstract JPA project.
*/
public class GenericJpaProject
extends AbstractJpaProject
{
// ********** constructor/initialization **********
public GenericJpaProject(JpaProject2_0.Config config) {
super(config);
}
}