/******************************************************************************* * Copyright (c) 2009, 2014 SAP AG and others. * 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 * * Contributors: * SAP AG - initial API and implementation ****************************************************************************** */ package integration.xsd; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Choice</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link integration.xsd.Choice#getChildren <em>Children</em>}</li> * </ul> * </p> * * @see integration.xsd.XsdPackage#getChoice() * @model * @generated */ public interface Choice extends Containable { /** * Returns the value of the '<em><b>Children</b></em>' reference list. * The list contents are of type {@link integration.xsd.Containable}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Children</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Children</em>' reference list. * @see integration.xsd.XsdPackage#getChoice_Children() * @model * @generated */ EList<Containable> getChildren(); } // Choice