/** * <copyright> * </copyright> * * $Id$ */ package org.yakindu.base.types; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.base.types.Type#getConstraint <em>Constraint</em>}</li> * <li>{@link org.yakindu.base.types.Type#isAbstract <em>Abstract</em>}</li> * <li>{@link org.yakindu.base.types.Type#isVisible <em>Visible</em>}</li> * </ul> * * @see org.yakindu.base.types.TypesPackage#getType() * @model * @generated */ public interface Type extends PackageMember { /** * Returns the value of the '<em><b>Constraint</b></em>' containment reference list. * The list contents are of type {@link org.yakindu.base.types.TypeConstraint}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Constraint</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>Constraint</em>' containment reference list. * @see org.yakindu.base.types.TypesPackage#getType_Constraint() * @model containment="true" * @generated */ EList<TypeConstraint> getConstraint(); /** * Returns the value of the '<em><b>Abstract</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Abstract</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Abstract</em>' attribute. * @see #setAbstract(boolean) * @see org.yakindu.base.types.TypesPackage#getType_Abstract() * @model * @generated */ boolean isAbstract(); /** * Sets the value of the '{@link org.yakindu.base.types.Type#isAbstract <em>Abstract</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Abstract</em>' attribute. * @see #isAbstract() * @generated */ void setAbstract(boolean value); /** * Returns the value of the '<em><b>Visible</b></em>' attribute. * The default value is <code>"true"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visible</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Visible</em>' attribute. * @see #setVisible(boolean) * @see org.yakindu.base.types.TypesPackage#getType_Visible() * @model default="true" * @generated */ boolean isVisible(); /** * Sets the value of the '{@link org.yakindu.base.types.Type#isVisible <em>Visible</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visible</em>' attribute. * @see #isVisible() * @generated */ void setVisible(boolean value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ Type getOriginType(); } // Type