Skip to content

Package: D

D

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: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>D</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.D#getX <em>X</em>}</li>
29: * <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.D#getYList <em>YList</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getD()
33: * @model
34: * @generated
35: */
36: public interface D extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>X</b></em>' attribute.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>X</em>' attribute isn't clear, there really should be more of a description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>X</em>' attribute.
46:          * @see #setX(String)
47:          * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getD_X()
48:          * @model
49:          * @generated
50:          */
51:         String getX();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.D#getX
55:          * <em>X</em>}' attribute.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>X</em>' attribute.
60:          * @see #getX()
61:          * @generated
62:          */
63:         void setX(String value);
64:
65:         /**
66:          * Returns the value of the '<em><b>YList</b></em>' attribute list.
67:          * The list contents are of type {@link java.lang.Integer}.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>YList</em>' attribute list isn't clear, there really should be more of a description
71:          * here...
72:          * </p>
73:          * <!-- end-user-doc -->
74:          *
75:          * @return the value of the '<em>YList</em>' attribute list.
76:          * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getD_YList()
77:          * @model
78:          * @generated
79:          */
80:         EList<Integer> getYList();
81:
82: } // D