blob: 72403bbef2809cf996a6681f14a7f923b0609a80 [file] [log] [blame]
kmoorec9c9e2b2011-02-06 02:07:28 +00001/*******************************************************************************
2 * Copyright (c) 2010, 2011 Oracle. All rights reserved.
3 * This program and the accompanying materials are made available under the
4 * terms of the Eclipse Public License v1.0, which accompanies this distribution
5 * and is available at http://www.eclipse.org/legal/epl-v10.html.
6 *
7 * Contributors:
8 * Oracle - initial API and implementation
9 ******************************************************************************/
10package org.eclipse.jpt.jpa.core.context.orm;
11
12/**
13 * <code>orm.xml</code> mapping join table relationship (1:1, 1:m, m:1, m:m)
14 * <p>
15 * Provisional API: This interface is part of an interim API that is still
16 * under development and expected to change significantly before reaching
17 * stability. It is available at this early stage to solicit feedback from
18 * pioneering adopters on the understanding that any code that uses this API
19 * will almost certainly be broken (repeatedly) as the API evolves.
20 */
21public interface OrmMappingJoinTableRelationship
22 extends OrmJoinTableRelationship,
23 OrmMappingRelationship
24{
25 // combine various interfaces
26}