|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 package gcmodel; |
|
18 |
|
19 import org.eclipse.emf.ecore.EObject; |
|
20 |
|
21 /** |
|
22 * <!-- begin-user-doc --> |
|
23 * A representation of the model object '<em><b>Setting</b></em>'. |
|
24 * <!-- end-user-doc --> |
|
25 * |
|
26 * <p> |
|
27 * The following features are supported: |
|
28 * <ul> |
|
29 * <li>{@link gcmodel.Setting#getRef <em>Ref</em>}</li> |
|
30 * <li>{@link gcmodel.Setting#getGvalue <em>Gvalue</em>}</li> |
|
31 * </ul> |
|
32 * </p> |
|
33 * |
|
34 * @see gcmodel.GcmodelPackage#getSetting() |
|
35 * @model |
|
36 * @generated |
|
37 */ |
|
38 public interface Setting extends EObject { |
|
39 /** |
|
40 * Returns the value of the '<em><b>Ref</b></em>' attribute. |
|
41 * <!-- begin-user-doc --> |
|
42 * <p> |
|
43 * If the meaning of the '<em>Ref</em>' attribute isn't clear, |
|
44 * there really should be more of a description here... |
|
45 * </p> |
|
46 * <!-- end-user-doc --> |
|
47 * @return the value of the '<em>Ref</em>' attribute. |
|
48 * @see #setRef(String) |
|
49 * @see gcmodel.GcmodelPackage#getSetting_Ref() |
|
50 * @model |
|
51 * @generated |
|
52 */ |
|
53 String getRef(); |
|
54 |
|
55 /** |
|
56 * Sets the value of the '{@link gcmodel.Setting#getRef <em>Ref</em>}' attribute. |
|
57 * <!-- begin-user-doc --> |
|
58 * <!-- end-user-doc --> |
|
59 * @param value the new value of the '<em>Ref</em>' attribute. |
|
60 * @see #getRef() |
|
61 * @generated |
|
62 */ |
|
63 void setRef(String value); |
|
64 |
|
65 /** |
|
66 * Returns the value of the '<em><b>Gvalue</b></em>' attribute. |
|
67 * <!-- begin-user-doc --> |
|
68 * <p> |
|
69 * If the meaning of the '<em>Gvalue</em>' attribute isn't clear, |
|
70 * there really should be more of a description here... |
|
71 * </p> |
|
72 * <!-- end-user-doc --> |
|
73 * @return the value of the '<em>Gvalue</em>' attribute. |
|
74 * @see #setGvalue(String) |
|
75 * @see gcmodel.GcmodelPackage#getSetting_Gvalue() |
|
76 * @model transient="true" |
|
77 * @generated |
|
78 */ |
|
79 String getGvalue(); |
|
80 |
|
81 /** |
|
82 * Sets the value of the '{@link gcmodel.Setting#getGvalue <em>Gvalue</em>}' attribute. |
|
83 * <!-- begin-user-doc --> |
|
84 * <!-- end-user-doc --> |
|
85 * @param value the new value of the '<em>Gvalue</em>' attribute. |
|
86 * @see #getGvalue() |
|
87 * @generated |
|
88 */ |
|
89 void setGvalue(String value); |
|
90 |
|
91 } // Setting |