blob: 52cb88c86ccc63f56ef81a54edd75d8283665a3e [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2005, 2013 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Stefan Dimov - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.jpt.jpadiagrameditor.ui.internal.relations;
import org.eclipse.jpt.jpa.core.context.PersistentAttribute;
public interface IBidirectionalRelation extends IRelation {
public abstract PersistentAttribute getOwnerAnnotatedAttribute();
public abstract PersistentAttribute getInverseAnnotatedAttribute();
public abstract void setOwnerAnnotatedAttribute(PersistentAttribute ownerAnnotatedAttribute);
public abstract void setInverseAnnotatedAttribute(PersistentAttribute inverseAnnotatedAttribute);
}