Skip to content

Package: Dimension

Dimension

Coverage

1: /**
2: * Copyright (c) 2011-2018 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: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emfforms.coffee.model.coffee;
15:
16: import org.eclipse.emf.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Dimension</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.coffee.model.coffee.Dimension#getWidth <em>Width</em>}</li>
28: * <li>{@link org.eclipse.emfforms.coffee.model.coffee.Dimension#getHeight <em>Height</em>}</li>
29: * <li>{@link org.eclipse.emfforms.coffee.model.coffee.Dimension#getLength <em>Length</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDimension()
33: * @model
34: * @generated
35: */
36: public interface Dimension extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>Width</b></em>' attribute.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Width</em>' attribute isn't clear,
42:          * there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Width</em>' attribute.
47:          * @see #setWidth(int)
48:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDimension_Width()
49:          * @model
50:          * @generated
51:          */
52:         int getWidth();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Dimension#getWidth <em>Width</em>}'
56:          * attribute.
57:          * <!-- begin-user-doc -->
58:          * <!-- end-user-doc -->
59:          *
60:          * @param value the new value of the '<em>Width</em>' attribute.
61:          * @see #getWidth()
62:          * @generated
63:          */
64:         void setWidth(int value);
65:
66:         /**
67:          * Returns the value of the '<em><b>Height</b></em>' attribute.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>Height</em>' attribute 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>Height</em>' attribute.
76:          * @see #setHeight(int)
77:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDimension_Height()
78:          * @model
79:          * @generated
80:          */
81:         int getHeight();
82:
83:         /**
84:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Dimension#getHeight <em>Height</em>}'
85:          * attribute.
86:          * <!-- begin-user-doc -->
87:          * <!-- end-user-doc -->
88:          *
89:          * @param value the new value of the '<em>Height</em>' attribute.
90:          * @see #getHeight()
91:          * @generated
92:          */
93:         void setHeight(int value);
94:
95:         /**
96:          * Returns the value of the '<em><b>Length</b></em>' attribute.
97:          * <!-- begin-user-doc -->
98:          * <p>
99:          * If the meaning of the '<em>Length</em>' attribute isn't clear,
100:          * there really should be more of a description here...
101:          * </p>
102:          * <!-- end-user-doc -->
103:          *
104:          * @return the value of the '<em>Length</em>' attribute.
105:          * @see #setLength(int)
106:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDimension_Length()
107:          * @model
108:          * @generated
109:          */
110:         int getLength();
111:
112:         /**
113:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Dimension#getLength <em>Length</em>}'
114:          * attribute.
115:          * <!-- begin-user-doc -->
116:          * <!-- end-user-doc -->
117:          *
118:          * @param value the new value of the '<em>Length</em>' attribute.
119:          * @see #getLength()
120:          * @generated
121:          */
122:         void setLength(int value);
123:
124: } // Dimension