blob: 19ddd53ea3f3cc31ad60989a1779b6fd37e83c00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation
*
******************************************************************************/
package org.eclipse.persistence.tools.mapping.orm.dom;
import org.eclipse.persistence.tools.mapping.orm.ExternalInverseJoinColumn;
/**
* The external form of an inverse Join column.
*
* @see JoinTable
*
* @version 2.6
*/
final class InverseJoinColumn extends JoinColumn
implements ExternalInverseJoinColumn {
/**
* Creates a new <code>InverseJoinColumn</code>.
*
* @param parent The parent of this external form
* @param index The position of the element within the list of children with the same type owned by the parent
*/
InverseJoinColumn(JoinTable parent, int index) {
super(parent, INVERSE_JOIN_COLUMN, index);
}
}