/****************************************************************************** * Copyright (c) 2009-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.sun.java.xml.ns.jbi; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Connections</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.sun.java.xml.ns.jbi.Connections#getConnection <em>Connection</em>}</li> * </ul> * </p> * * @see com.sun.java.xml.ns.jbi.JbiPackage#getConnections() * @model extendedMetaData="name='Connections' kind='elementOnly'" * @generated */ public interface Connections extends AbstractExtensibleElement { /** * Returns the value of the '<em><b>Connection</b></em>' containment reference list. * The list contents are of type {@link com.sun.java.xml.ns.jbi.Connection}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Connection</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>Connection</em>' containment reference list. * @see com.sun.java.xml.ns.jbi.JbiPackage#getConnections_Connection() * @model containment="true" * extendedMetaData="kind='element' name='connection' namespace='##targetNamespace'" * @generated */ EList<Connection> getConnection(); } // Connections