Skip to content

Package: RAM

RAM

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>RAM</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.RAM#getClockSpeed <em>Clock Speed</em>}</li>
28: * <li>{@link org.eclipse.emfforms.coffee.model.coffee.RAM#getSize <em>Size</em>}</li>
29: * <li>{@link org.eclipse.emfforms.coffee.model.coffee.RAM#getType <em>Type</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getRAM()
33: * @model
34: * @generated
35: */
36: public interface RAM extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>Clock Speed</b></em>' attribute.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Clock Speed</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>Clock Speed</em>' attribute.
47:          * @see #setClockSpeed(int)
48:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getRAM_ClockSpeed()
49:          * @model
50:          * @generated
51:          */
52:         int getClockSpeed();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.RAM#getClockSpeed <em>Clock Speed</em>}'
56:          * attribute.
57:          * <!-- begin-user-doc -->
58:          * <!-- end-user-doc -->
59:          *
60:          * @param value the new value of the '<em>Clock Speed</em>' attribute.
61:          * @see #getClockSpeed()
62:          * @generated
63:          */
64:         void setClockSpeed(int value);
65:
66:         /**
67:          * Returns the value of the '<em><b>Size</b></em>' attribute.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>Size</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>Size</em>' attribute.
76:          * @see #setSize(int)
77:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getRAM_Size()
78:          * @model
79:          * @generated
80:          */
81:         int getSize();
82:
83:         /**
84:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.RAM#getSize <em>Size</em>}' attribute.
85:          * <!-- begin-user-doc -->
86:          * <!-- end-user-doc -->
87:          *
88:          * @param value the new value of the '<em>Size</em>' attribute.
89:          * @see #getSize()
90:          * @generated
91:          */
92:         void setSize(int value);
93:
94:         /**
95:          * Returns the value of the '<em><b>Type</b></em>' attribute.
96:          * The literals are from the enumeration {@link org.eclipse.emfforms.coffee.model.coffee.RamType}.
97:          * <!-- begin-user-doc -->
98:          * <p>
99:          * If the meaning of the '<em>Type</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>Type</em>' attribute.
105:          * @see org.eclipse.emfforms.coffee.model.coffee.RamType
106:          * @see #setType(RamType)
107:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getRAM_Type()
108:          * @model
109:          * @generated
110:          */
111:         RamType getType();
112:
113:         /**
114:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.RAM#getType <em>Type</em>}' attribute.
115:          * <!-- begin-user-doc -->
116:          * <!-- end-user-doc -->
117:          *
118:          * @param value the new value of the '<em>Type</em>' attribute.
119:          * @see org.eclipse.emfforms.coffee.model.coffee.RamType
120:          * @see #getType()
121:          * @generated
122:          */
123:         void setType(RamType value);
124:
125: } // RAM