/** */ package org.yakindu.base.types; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Type Parameter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.base.types.TypeParameter#getBound <em>Bound</em>}</li> * </ul> * * @see org.yakindu.base.types.TypesPackage#getTypeParameter() * @model * @generated */ public interface TypeParameter extends Type { /** * Returns the value of the '<em><b>Bound</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bound</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bound</em>' reference. * @see #setBound(Type) * @see org.yakindu.base.types.TypesPackage#getTypeParameter_Bound() * @model * @generated */ Type getBound(); /** * Sets the value of the '{@link org.yakindu.base.types.TypeParameter#getBound <em>Bound</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bound</em>' reference. * @see #getBound() * @generated */ void setBound(Type value); } // TypeParameter