Skip to content

Package: ChildLevel1

ChildLevel1

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.treemasterdetail.validation.test.TestTMD;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc --> A representation of the model object ' <em><b>Child Level1</b></em>'. <!-- end-user-doc -->
21: *
22: * <p>
23: * The following features are supported:
24: * <ul>
25: * <li>
26: * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel1#getName
27: * <em>Name</em>}</li>
28: * <li>
29: * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel1#getChildren
30: * <em>Children</em>}</li>
31: * </ul>
32: * </p>
33: *
34: * @see org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.TestTMDPackage#getChildLevel1()
35: * @model
36: * @generated
37: */
38: public interface ChildLevel1 extends EObject {
39:         /**
40:          * Returns the value of the '<em><b>Name</b></em>' attribute. <!--
41:          * begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Name</em>' attribute.
48:          * @see #setName(String)
49:          * @see org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.TestTMDPackage#getChildLevel1_Name()
50:          * @model required="true"
51:          * @generated
52:          */
53:         String getName();
54:
55:         /**
56:          * Sets the value of the '
57:          * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel1#getName
58:          * <em>Name</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
59:          *
60:          * @param value
61:          * the new value of the '<em>Name</em>' attribute.
62:          * @see #getName()
63:          * @generated
64:          */
65:         void setName(String value);
66:
67:         /**
68:          * Returns the value of the '<em><b>Children</b></em>' containment reference
69:          * list. The list contents are of type
70:          * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel2} . <!-- begin-user-doc -->
71:          * <p>
72:          * If the meaning of the '<em>Children</em>' containment reference list isn't clear, there really should be more of
73:          * a description here...
74:          * </p>
75:          * <!-- end-user-doc -->
76:          *
77:          * @return the value of the '<em>Children</em>' containment reference list.
78:          * @see org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.TestTMDPackage#getChildLevel1_Children()
79:          * @model containment="true"
80:          * @generated
81:          */
82:         EList<ChildLevel2> getChildren();
83:
84: } // ChildLevel1