/** * <copyright> * </copyright> * * $Id: DiscriminatorColumn.java,v 1.5 2007/07/04 19:28:01 mtaal Exp $ */ package org.eclipse.emf.teneo.annotations.pannotation; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Discriminator Column</b></em>'. <!-- * end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getName <em>Name</em>}</li> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getDiscriminatorType <em>Discriminator Type</em>}</li> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getColumnDefinition <em>Column Definition</em>}</li> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getLength <em>Length</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getDiscriminatorColumn() * @model annotation="teneo/internal/Target 0='EClass'" * @generated */ public interface DiscriminatorColumn extends PAnnotation { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * The default value is <code>"DTYPE"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getDiscriminatorColumn_Name() * @model default="DTYPE" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Discriminator Type</b></em>' attribute. * The default value is <code>"STRING"</code>. * The literals are from the enumeration {@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Discriminator Type</em>' attribute isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Discriminator Type</em>' attribute. * @see org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorType * @see #setDiscriminatorType(DiscriminatorType) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getDiscriminatorColumn_DiscriminatorType() * @model default="STRING" * @generated */ DiscriminatorType getDiscriminatorType(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getDiscriminatorType <em>Discriminator Type</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Discriminator Type</em>' attribute. * @see org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorType * @see #getDiscriminatorType() * @generated */ void setDiscriminatorType(DiscriminatorType value); /** * Returns the value of the '<em><b>Length</b></em>' attribute. The default value is <code>"31"</code>. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Length</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Length</em>' attribute. * @see #isSetLength() * @see #unsetLength() * @see #setLength(int) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getDiscriminatorColumn_Length() * @model default="31" unsettable="true" * @generated */ int getLength(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getLength <em>Length</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Length</em>' attribute. * @see #isSetLength() * @see #unsetLength() * @see #getLength() * @generated */ void setLength(int value); /** * Unsets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getLength <em>Length</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #isSetLength() * @see #getLength() * @see #setLength(int) * @generated */ void unsetLength(); /** * Returns whether the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getLength <em>Length</em>}' attribute is set. * <!-- begin-user-doc --> <!-- end-user-doc --> * @return whether the value of the '<em>Length</em>' attribute is set. * @see #unsetLength() * @see #getLength() * @see #setLength(int) * @generated */ boolean isSetLength(); /** * Returns the value of the '<em><b>Column Definition</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Column Definition</em>' attribute isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Column Definition</em>' attribute. * @see #setColumnDefinition(String) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getDiscriminatorColumn_ColumnDefinition() * @model * @generated */ String getColumnDefinition(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.DiscriminatorColumn#getColumnDefinition <em>Column Definition</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Column Definition</em>' attribute. * @see #getColumnDefinition() * @generated */ void setColumnDefinition(String value); } // DiscriminatorColumn