Skip to content

Package: TableWithoutMultiplicityConcrete

TableWithoutMultiplicityConcrete

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:
16: package org.eclipse.emf.ecp.view.validation.test.model;
17:
18: import org.eclipse.emf.common.util.EList;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>Table Without Multiplicity Concrete</b></em>'.
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableWithoutMultiplicityConcrete#getContent
30: * <em>Content</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableWithoutMultiplicityConcrete()
34: * @model
35: * @generated
36: */
37: public interface TableWithoutMultiplicityConcrete extends TableObject {
38:         /**
39:          * Returns the value of the '<em><b>Content</b></em>' containment reference list.
40:          * The list contents are of type {@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild}.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Content</em>' containment reference list isn't clear, there really should be more of a
44:          * description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Content</em>' containment reference list.
49:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableWithoutMultiplicityConcrete_Content()
50:          * @model containment="true"
51:          * @generated
52:          */
53:         EList<TableContentWithInnerChild> getContent();
54:
55: } // TableWithoutMultiplicityConcrete