Skip to content

Package: Display

Display

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>Display</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.Display#getWidth <em>Width</em>}</li>
28: * <li>{@link org.eclipse.emfforms.coffee.model.coffee.Display#getHeight <em>Height</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDisplay()
32: * @model
33: * @generated
34: */
35: public interface Display extends EObject {
36:         /**
37:          * Returns the value of the '<em><b>Width</b></em>' attribute.
38:          * <!-- begin-user-doc -->
39:          * <p>
40:          * If the meaning of the '<em>Width</em>' attribute isn't clear,
41:          * there really should be more of a description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>Width</em>' attribute.
46:          * @see #setWidth(int)
47:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDisplay_Width()
48:          * @model
49:          * @generated
50:          */
51:         int getWidth();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Display#getWidth <em>Width</em>}'
55:          * attribute.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>Width</em>' attribute.
60:          * @see #getWidth()
61:          * @generated
62:          */
63:         void setWidth(int value);
64:
65:         /**
66:          * Returns the value of the '<em><b>Height</b></em>' attribute.
67:          * <!-- begin-user-doc -->
68:          * <p>
69:          * If the meaning of the '<em>Height</em>' attribute isn't clear,
70:          * there really should be more of a description here...
71:          * </p>
72:          * <!-- end-user-doc -->
73:          *
74:          * @return the value of the '<em>Height</em>' attribute.
75:          * @see #setHeight(int)
76:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getDisplay_Height()
77:          * @model
78:          * @generated
79:          */
80:         int getHeight();
81:
82:         /**
83:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Display#getHeight <em>Height</em>}'
84:          * attribute.
85:          * <!-- begin-user-doc -->
86:          * <!-- end-user-doc -->
87:          *
88:          * @param value the new value of the '<em>Height</em>' attribute.
89:          * @see #getHeight()
90:          * @generated
91:          */
92:         void setHeight(int value);
93:
94: } // Display