/** * <copyright> * </copyright> * */ package org.applause.lang.applauseDsl; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Type Description</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.applause.lang.applauseDsl.TypeDescription#getType <em>Type</em>}</li> * <li>{@link org.applause.lang.applauseDsl.TypeDescription#isMany <em>Many</em>}</li> * </ul> * </p> * * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getTypeDescription() * @model * @generated */ public interface TypeDescription extends EObject { /** * Returns the value of the '<em><b>Type</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' reference. * @see #setType(Type) * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getTypeDescription_Type() * @model * @generated */ Type getType(); /** * Sets the value of the '{@link org.applause.lang.applauseDsl.TypeDescription#getType <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' reference. * @see #getType() * @generated */ void setType(Type value); /** * Returns the value of the '<em><b>Many</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Many</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Many</em>' attribute. * @see #setMany(boolean) * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getTypeDescription_Many() * @model * @generated */ boolean isMany(); /** * Sets the value of the '{@link org.applause.lang.applauseDsl.TypeDescription#isMany <em>Many</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Many</em>' attribute. * @see #isMany() * @generated */ void setMany(boolean value); } // TypeDescription