/** * This file is protected by Copyright. * Please refer to the COPYRIGHT file distributed with this source distribution. * * This file is part of REDHAWK IDE. * * All rights reserved. This program and the accompanying materials are made available under * the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * */ // BEGIN GENERATED CODE package gov.redhawk.eclipsecorba.idl.types; import gov.redhawk.eclipsecorba.idl.FileRegion; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Case</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link gov.redhawk.eclipsecorba.idl.types.Case#getLabels <em>Labels</em>}</li> * <li>{@link gov.redhawk.eclipsecorba.idl.types.Case#getSpec <em>Spec</em>}</li> * </ul> * </p> * * @see gov.redhawk.eclipsecorba.idl.types.TypesPackage#getCase() * @model * @generated */ public interface Case extends FileRegion { /** * Returns the value of the '<em><b>Labels</b></em>' containment reference list. * The list contents are of type {@link gov.redhawk.eclipsecorba.idl.types.CaseLabel}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Labels</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>Labels</em>' containment reference list. * @see gov.redhawk.eclipsecorba.idl.types.TypesPackage#getCase_Labels() * @model containment="true" * @generated */ EList<CaseLabel> getLabels(); /** * Returns the value of the '<em><b>Spec</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Spec</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Spec</em>' containment reference. * @see #setSpec(ElementSpec) * @see gov.redhawk.eclipsecorba.idl.types.TypesPackage#getCase_Spec() * @model containment="true" * @generated */ ElementSpec getSpec(); /** * Sets the value of the '{@link gov.redhawk.eclipsecorba.idl.types.Case#getSpec <em>Spec</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Spec</em>' containment reference. * @see #getSpec() * @generated */ void setSpec(ElementSpec value); } // Case