Skip to content

Package: TableContentWithInnerChild

TableContentWithInnerChild

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: package org.eclipse.emf.ecp.view.validation.test.model;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Table Content With Inner Child</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild#getInnerChild
26: * <em>Inner Child</em>}</li>
27: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild#getStuff <em>Stuff</em>}</li>
28: * </ul>
29: *
30: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithInnerChild()
31: * @model
32: * @generated
33: */
34: public interface TableContentWithInnerChild 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#getTableContentWithInnerChild_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.TableContentWithInnerChild#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:         /**
66:          * Returns the value of the '<em><b>Stuff</b></em>' attribute.
67:          * <!-- begin-user-doc -->
68:          * <p>
69:          * If the meaning of the '<em>Stuff</em>' attribute isn't clear, there really should be more of a description
70:          * here...
71:          * </p>
72:          * <!-- end-user-doc -->
73:          *
74:          * @return the value of the '<em>Stuff</em>' attribute.
75:          * @see #setStuff(String)
76:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithInnerChild_Stuff()
77:          * @model
78:          * @generated
79:          */
80:         String getStuff();
81:
82:         /**
83:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithInnerChild#getStuff
84:          * <em>Stuff</em>}' attribute.
85:          * <!-- begin-user-doc -->
86:          * <!-- end-user-doc -->
87:          *
88:          * @param value the new value of the '<em>Stuff</em>' attribute.
89:          * @see #getStuff()
90:          * @generated
91:          */
92:         void setStuff(String value);
93:
94: } // TableContentWithInnerChild