blob: a4a2a86e679ea174ed2489549b7c0795191fbfb5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.tests.internal.jpa2.resource.java;
import org.eclipse.jpt.core.JpaAnnotationProvider;
import org.eclipse.jpt.core.internal.GenericJpaAnnotationProvider;
import org.eclipse.jpt.core.internal.jpa2.Generic2_0JpaAnnotationDefinitionProvider;
import org.eclipse.jpt.core.tests.internal.resource.java.JpaJavaResourceModelTestCase;
public class JavaResourceModel2_0TestCase extends JpaJavaResourceModelTestCase
{
public JavaResourceModel2_0TestCase(String name) {
super(name);
}
@Override
protected JpaAnnotationProvider buildAnnotationProvider() {
return new GenericJpaAnnotationProvider(
Generic2_0JpaAnnotationDefinitionProvider.instance());
}
}