/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Wildcard Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.WildcardType#getSuperToTypes <em>Super To Types</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.WildcardType#getExtendedTypes <em>Extended Types</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getWildcardType() * @model * @generated */ public interface WildcardType extends Expression { /** * Returns the value of the '<em><b>Super To Types</b></em>' containment reference list. * The list contents are of type {@link net.sf.etl.samples.ej.ast.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Super To Types</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>Super To Types</em>' containment reference list. * @see net.sf.etl.samples.ej.ast.AstPackage#getWildcardType_SuperToTypes() * @model type="net.sf.etl.samples.ej.ast.Expression" containment="true" resolveProxies="false" * @generated */ EList getSuperToTypes(); /** * Returns the value of the '<em><b>Extended Types</b></em>' containment reference list. * The list contents are of type {@link net.sf.etl.samples.ej.ast.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Extended Types</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>Extended Types</em>' containment reference list. * @see net.sf.etl.samples.ej.ast.AstPackage#getWildcardType_ExtendedTypes() * @model type="net.sf.etl.samples.ej.ast.Expression" containment="true" resolveProxies="false" * @generated */ EList getExtendedTypes(); } // WildcardType