Skip to main content
summaryrefslogtreecommitdiffstats
blob: 002f7c223cc3f3fbb67acbc3c7531c15801e3efa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*******************************************************************************
* 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.eclipselink.core.v2_0.context.persistence.options;

import org.eclipse.jpt.core.jpa2.context.persistence.options.JpaOptions2_0;
import org.eclipse.jpt.eclipselink.core.context.persistence.options.Options;

/**
 *  Options2_0
 */
public interface Options2_0 extends Options, JpaOptions2_0
{

}

Back to the top