Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5e5b7fc862016d77430f516e7382d5b300a8ec8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*******************************************************************************
* 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.jpa2.context.java;

import org.eclipse.jpt.core.context.java.JavaOneToManyMapping;
import org.eclipse.jpt.core.jpa2.context.OneToManyMapping2_0;

/**
 *  JavaOneToManyMapping2_0
 */
public interface JavaOneToManyMapping2_0
	extends JavaOneToManyMapping, OneToManyMapping2_0
{}

Back to the top