Skip to content

Package: TestElementContainer

TestElementContainer

Coverage

1: /**
2: * Copyright (c) 2011-2013 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: * Edgar Mueller - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.dynamictree.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Test Element Container</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.dynamictree.model.TestElementContainer#getTestElements <em>Test
28: * Elements</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.view.dynamictree.model.TestElementContainer#getId <em>Id</em>}</li>
30: * </ul>
31: * </p>
32: *
33: * @see org.eclipse.emf.ecp.view.dynamictree.model.ModelPackage#getTestElementContainer()
34: * @model
35: * @generated
36: */
37: public interface TestElementContainer extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Test Elements</b></em>' containment reference list.
40:          * The list contents are of type {@link org.eclipse.emf.ecp.view.dynamictree.model.TestElement}.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Test Elements</em>' containment reference list isn't clear, there really should be
44:          * more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Test Elements</em>' containment reference list.
49:          * @see org.eclipse.emf.ecp.view.dynamictree.model.ModelPackage#getTestElementContainer_TestElements()
50:          * @model containment="true"
51:          * @generated
52:          */
53:         EList<TestElement> getTestElements();
54:
55:         /**
56:          * Returns the value of the '<em><b>Id</b></em>' attribute.
57:          * <!-- begin-user-doc -->
58:          * <p>
59:          * If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a description here...
60:          * </p>
61:          * <!-- end-user-doc -->
62:          *
63:          * @return the value of the '<em>Id</em>' attribute.
64:          * @see #setId(String)
65:          * @see org.eclipse.emf.ecp.view.dynamictree.model.ModelPackage#getTestElementContainer_Id()
66:          * @model
67:          * @generated
68:          */
69:         String getId();
70:
71:         /**
72:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.dynamictree.model.TestElementContainer#getId <em>Id</em>}'
73:          * attribute.
74:          * <!-- begin-user-doc -->
75:          * <!-- end-user-doc -->
76:          *
77:          * @param value the new value of the '<em>Id</em>' attribute.
78:          * @see #getId()
79:          * @generated
80:          */
81:         void setId(String value);
82:
83: } // TestElementContainer