Skip to content

Package: DExtended

DExtended

Coverage

1: /**
2: * Copyright (c) 2011-2016 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: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>DExtended</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.DExtended#getA <em>A</em>}</li>
26: * </ul>
27: *
28: * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getDExtended()
29: * @model
30: * @generated
31: */
32: public interface DExtended extends D {
33:         /**
34:          * Returns the value of the '<em><b>A</b></em>' reference.
35:          * <!-- begin-user-doc -->
36:          * <p>
37:          * If the meaning of the '<em>A</em>' reference isn't clear,
38:          * there really should be more of a description here...
39:          * </p>
40:          * <!-- end-user-doc -->
41:          *
42:          * @return the value of the '<em>A</em>' reference.
43:          * @see #setA(A)
44:          * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getDExtended_A()
45:          * @model
46:          * @generated
47:          */
48:         A getA();
49:
50:         /**
51:          * Sets the value of the '{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.DExtended#getA
52:          * <em>A</em>}' reference.
53:          * <!-- begin-user-doc -->
54:          * <!-- end-user-doc -->
55:          *
56:          * @param value the new value of the '<em>A</em>' reference.
57:          * @see #getA()
58:          * @generated
59:          */
60:         void setA(A value);
61:
62: } // DExtended