/** * <copyright> * </copyright> * * $Id: UniqueConstraint.java,v 1.5 2007/07/04 19:28:01 mtaal Exp $ */ package org.eclipse.emf.teneo.annotations.pannotation; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Unique Constraint</b></em>'. <!-- * end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.UniqueConstraint#getColumnNames <em>Column Names</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getUniqueConstraint() * @model * @generated */ public interface UniqueConstraint extends PAnnotation{ /** * Returns the value of the '<em><b>Column Names</b></em>' attribute list. * The list contents are of type {@link java.lang.String}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Column Names</em>' attribute list isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Column Names</em>' attribute list. * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getUniqueConstraint_ColumnNames() * @model required="true" * @generated */ EList<String> getColumnNames(); } // UniqueConstraint