Skip to content

Package: A

A

Coverage

1: /**
2: * Copyright (c) 2011-2015 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: * Lucas Koehler - initial API and implementation
13: */
14: package org.eclipse.emfforms.core.services.databinding.testmodel.test.model;
15:
16: import org.eclipse.emf.common.util.EList;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>A</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.A#getB <em>B</em>}</li>
28: * <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.A#getBList <em>BList</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getA()
32: * @model
33: * @generated
34: */
35: public interface A extends E {
36:         /**
37:          * Returns the value of the '<em><b>B</b></em>' containment reference.
38:          * <!-- begin-user-doc -->
39:          * <p>
40:          * If the meaning of the '<em>B</em>' containment reference isn't clear, there really should be more of a
41:          * description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>B</em>' containment reference.
46:          * @see #setB(B)
47:          * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getA_B()
48:          * @model containment="true"
49:          * @generated
50:          */
51:         B getB();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.A#getB
55:          * <em>B</em>}' containment reference.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>B</em>' containment reference.
60:          * @see #getB()
61:          * @generated
62:          */
63:         void setB(B value);
64:
65:         /**
66:          * Returns the value of the '<em><b>BList</b></em>' reference list.
67:          * The list contents are of type {@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.B}.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>BList</em>' reference list isn't clear,
71:          * there really should be more of a description here...
72:          * </p>
73:          * <!-- end-user-doc -->
74:          *
75:          * @return the value of the '<em>BList</em>' reference list.
76:          * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getA_BList()
77:          * @model
78:          * @generated
79:          */
80:         EList<B> getBList();
81:
82: } // A