Skip to content

Package: TableContentWithInnerChild2

TableContentWithInnerChild2

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2014 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: *******************************************************************************/
14:
15: package org.eclipse.emf.ecp.view.validation.test.model;
16:
17: /**
18: * <!-- begin-user-doc -->
19: * A representation of the model object '<em><b>Table Content With Inner Child2</b></em>'.
20: * <!-- end-user-doc -->
21: *
22: * <p>
23: * The following features are supported:
24: * </p>
25: * <ul>
26: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild2#getInnerChild
27: * <em>Inner Child</em>}</li>
28: * </ul>
29: *
30: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithInnerChild2()
31: * @model
32: * @generated
33: */
34: public interface TableContentWithInnerChild2 extends TableContent {
35:         /**
36:          * Returns the value of the '<em><b>Inner Child</b></em>' containment reference.
37:          * <!-- begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Inner Child</em>' containment reference isn't clear, there really should be more of a
40:          * description here...
41:          * </p>
42:          * <!-- end-user-doc -->
43:          *
44:          * @return the value of the '<em>Inner Child</em>' containment reference.
45:          * @see #setInnerChild(TableContent)
46:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithInnerChild2_InnerChild()
47:          * @model containment="true"
48:          * @generated
49:          */
50:         TableContent getInnerChild();
51:
52:         /**
53:          * Sets the value of the '
54:          * {@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild2#getInnerChild
55:          * <em>Inner Child</em>}' containment reference.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>Inner Child</em>' containment reference.
60:          * @see #getInnerChild()
61:          * @generated
62:          */
63:         void setInnerChild(TableContent value);
64:
65: } // TableContentWithInnerChild2