Skip to content

Package: Machine

Machine

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: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Machine</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.coffee.model.coffee.Machine#getName <em>Name</em>}</li>
26: * </ul>
27: *
28: * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getMachine()
29: * @model
30: * @generated
31: */
32: public interface Machine extends Component {
33:         /**
34:          * Returns the value of the '<em><b>Name</b></em>' attribute.
35:          * <!-- begin-user-doc -->
36:          * <p>
37:          * If the meaning of the '<em>Name</em>' attribute 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>Name</em>' attribute.
43:          * @see #setName(String)
44:          * @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getMachine_Name()
45:          * @model required="true"
46:          * @generated
47:          */
48:         String getName();
49:
50:         /**
51:          * Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Machine#getName <em>Name</em>}' attribute.
52:          * <!-- begin-user-doc -->
53:          * <!-- end-user-doc -->
54:          *
55:          * @param value the new value of the '<em>Name</em>' attribute.
56:          * @see #getName()
57:          * @generated
58:          */
59:         void setName(String value);
60:
61: } // Machine