/** * <copyright> * </copyright> * * $Id: MapKeyManyToMany.java,v 1.1 2008/07/06 16:25:28 mtaal Exp $ */ package org.eclipse.emf.teneo.hibernate.hbannotation; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.teneo.annotations.pannotation.JoinColumn; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Map Key Many To Many</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.MapKeyManyToMany#getJoinColumns <em>Join Columns</em>}</li> * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.MapKeyManyToMany#getTargetEntity <em>Target Entity</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getMapKeyManyToMany() * @model annotation="http://annotation.elver.org/internal/Target 0='EReference'" * @generated */ public interface MapKeyManyToMany extends HbAnnotation { /** * Returns the value of the '<em><b>Join Columns</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.emf.teneo.annotations.pannotation.JoinColumn}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Join Columns</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Join Columns</em>' containment reference list. * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getMapKeyManyToMany_JoinColumns() * @model containment="true" ordered="false" * @generated */ EList<JoinColumn> getJoinColumns(); /** * Returns the value of the '<em><b>Target Entity</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target Entity</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Target Entity</em>' attribute. * @see #setTargetEntity(String) * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getMapKeyManyToMany_TargetEntity() * @model * @generated */ String getTargetEntity(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.hibernate.hbannotation.MapKeyManyToMany#getTargetEntity <em>Target Entity</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target Entity</em>' attribute. * @see #getTargetEntity() * @generated */ void setTargetEntity(String value); } // MapKeyManyToMany