Skip to content

Package: ChildLevel2

ChildLevel2

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.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc --> A representation of the model object ' <em><b>Child Level2</b></em>'. <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * <ul>
24: * <li>
25: * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel2#getName
26: * <em>Name</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.TestTMDPackage#getChildLevel2()
31: * @model
32: * @generated
33: */
34: public interface ChildLevel2 extends EObject {
35:         /**
36:          * Returns the value of the '<em><b>Name</b></em>' attribute. <!--
37:          * begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Name</em>' attribute.
44:          * @see #setName(String)
45:          * @see org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.TestTMDPackage#getChildLevel2_Name()
46:          * @model required="true"
47:          * @generated
48:          */
49:         String getName();
50:
51:         /**
52:          * Sets the value of the '
53:          * {@link org.eclipse.emf.ecp.view.treemasterdetail.validation.test.TestTMD.ChildLevel2#getName
54:          * <em>Name</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
55:          *
56:          * @param value
57:          * the new value of the '<em>Name</em>' attribute.
58:          * @see #getName()
59:          * @generated
60:          */
61:         void setName(String value);
62:
63: } // ChildLevel2