Skip to content

Package: TableWithMultiplicity

TableWithMultiplicity

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2019 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eugen Neufeld - initial API and implementation
13: * Christian W. Damus - bug 543190
14: *******************************************************************************/
15: package org.eclipse.emf.ecp.view.validation.test.model;
16:
17: import org.eclipse.emf.common.util.EList;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Table With Multiplicity</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableWithMultiplicity#getContent <em>Content</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableWithMultiplicity()
32: * @model
33: * @generated
34: */
35: public interface TableWithMultiplicity extends TableObject {
36:         /**
37:          * Returns the value of the '<em><b>Content</b></em>' containment reference list.
38:          * The list contents are of type {@link org.eclipse.emf.ecp.view.validation.test.model.TableContent}.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Content</em>' containment reference list isn't clear, there really should be more of a
42:          * description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Content</em>' containment reference list.
47:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableWithMultiplicity_Content()
48:          * @model containment="true" required="true"
49:          * @generated
50:          */
51:         EList<TableContent> getContent();
52:
53: } // TableWithMultiplicity