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