|
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.common.util.EList; |
|
20 |
|
21 import org.eclipse.emf.ecore.EObject; |
|
22 |
|
23 /** |
|
24 * <!-- begin-user-doc --> |
|
25 * A representation of the model object '<em><b>File</b></em>'. |
|
26 * <!-- end-user-doc --> |
|
27 * |
|
28 * <p> |
|
29 * The following features are supported: |
|
30 * <ul> |
|
31 * <li>{@link gcmodel.File#getSettings <em>Settings</em>}</li> |
|
32 * <li>{@link gcmodel.File#getTemplate <em>Template</em>}</li> |
|
33 * <li>{@link gcmodel.File#getName <em>Name</em>}</li> |
|
34 * <li>{@link gcmodel.File#getFolder <em>Folder</em>}</li> |
|
35 * <li>{@link gcmodel.File#getParent <em>Parent</em>}</li> |
|
36 * <li>{@link gcmodel.File#getTarget <em>Target</em>}</li> |
|
37 * </ul> |
|
38 * </p> |
|
39 * |
|
40 * @see gcmodel.GcmodelPackage#getFile() |
|
41 * @model |
|
42 * @generated |
|
43 */ |
|
44 public interface File extends EObject { |
|
45 /** |
|
46 * Returns the value of the '<em><b>Settings</b></em>' containment reference list. |
|
47 * The list contents are of type {@link gcmodel.Setting}. |
|
48 * <!-- begin-user-doc --> |
|
49 * <p> |
|
50 * If the meaning of the '<em>Settings</em>' containment reference list isn't clear, |
|
51 * there really should be more of a description here... |
|
52 * </p> |
|
53 * <!-- end-user-doc --> |
|
54 * @return the value of the '<em>Settings</em>' containment reference list. |
|
55 * @see gcmodel.GcmodelPackage#getFile_Settings() |
|
56 * @model containment="true" |
|
57 * @generated |
|
58 */ |
|
59 EList<Setting> getSettings(); |
|
60 |
|
61 /** |
|
62 * Returns the value of the '<em><b>Template</b></em>' attribute. |
|
63 * <!-- begin-user-doc --> |
|
64 * <p> |
|
65 * If the meaning of the '<em>Template</em>' attribute isn't clear, |
|
66 * there really should be more of a description here... |
|
67 * </p> |
|
68 * <!-- end-user-doc --> |
|
69 * @return the value of the '<em>Template</em>' attribute. |
|
70 * @see #setTemplate(String) |
|
71 * @see gcmodel.GcmodelPackage#getFile_Template() |
|
72 * @model transient="true" |
|
73 * @generated |
|
74 */ |
|
75 String getTemplate(); |
|
76 |
|
77 /** |
|
78 * Sets the value of the '{@link gcmodel.File#getTemplate <em>Template</em>}' attribute. |
|
79 * <!-- begin-user-doc --> |
|
80 * <!-- end-user-doc --> |
|
81 * @param value the new value of the '<em>Template</em>' attribute. |
|
82 * @see #getTemplate() |
|
83 * @generated |
|
84 */ |
|
85 void setTemplate(String value); |
|
86 |
|
87 /** |
|
88 * Returns the value of the '<em><b>Name</b></em>' attribute. |
|
89 * <!-- begin-user-doc --> |
|
90 * <p> |
|
91 * If the meaning of the '<em>Name</em>' attribute isn't clear, |
|
92 * there really should be more of a description here... |
|
93 * </p> |
|
94 * <!-- end-user-doc --> |
|
95 * @return the value of the '<em>Name</em>' attribute. |
|
96 * @see #setName(String) |
|
97 * @see gcmodel.GcmodelPackage#getFile_Name() |
|
98 * @model |
|
99 * @generated |
|
100 */ |
|
101 String getName(); |
|
102 |
|
103 /** |
|
104 * Sets the value of the '{@link gcmodel.File#getName <em>Name</em>}' attribute. |
|
105 * <!-- begin-user-doc --> |
|
106 * <!-- end-user-doc --> |
|
107 * @param value the new value of the '<em>Name</em>' attribute. |
|
108 * @see #getName() |
|
109 * @generated |
|
110 */ |
|
111 void setName(String value); |
|
112 |
|
113 /** |
|
114 * Returns the value of the '<em><b>Folder</b></em>' attribute. |
|
115 * <!-- begin-user-doc --> |
|
116 * <p> |
|
117 * If the meaning of the '<em>Folder</em>' attribute isn't clear, |
|
118 * there really should be more of a description here... |
|
119 * </p> |
|
120 * <!-- end-user-doc --> |
|
121 * @return the value of the '<em>Folder</em>' attribute. |
|
122 * @see #setFolder(String) |
|
123 * @see gcmodel.GcmodelPackage#getFile_Folder() |
|
124 * @model transient="true" |
|
125 * @generated |
|
126 */ |
|
127 String getFolder(); |
|
128 |
|
129 /** |
|
130 * Sets the value of the '{@link gcmodel.File#getFolder <em>Folder</em>}' attribute. |
|
131 * <!-- begin-user-doc --> |
|
132 * <!-- end-user-doc --> |
|
133 * @param value the new value of the '<em>Folder</em>' attribute. |
|
134 * @see #getFolder() |
|
135 * @generated |
|
136 */ |
|
137 void setFolder(String value); |
|
138 |
|
139 /** |
|
140 * Returns the value of the '<em><b>Parent</b></em>' attribute. |
|
141 * <!-- begin-user-doc --> |
|
142 * <p> |
|
143 * If the meaning of the '<em>Parent</em>' attribute isn't clear, |
|
144 * there really should be more of a description here... |
|
145 * </p> |
|
146 * <!-- end-user-doc --> |
|
147 * @return the value of the '<em>Parent</em>' attribute. |
|
148 * @see #setParent(String) |
|
149 * @see gcmodel.GcmodelPackage#getFile_Parent() |
|
150 * @model |
|
151 * @generated |
|
152 */ |
|
153 String getParent(); |
|
154 |
|
155 /** |
|
156 * Sets the value of the '{@link gcmodel.File#getParent <em>Parent</em>}' attribute. |
|
157 * <!-- begin-user-doc --> |
|
158 * <!-- end-user-doc --> |
|
159 * @param value the new value of the '<em>Parent</em>' attribute. |
|
160 * @see #getParent() |
|
161 * @generated |
|
162 */ |
|
163 void setParent(String value); |
|
164 |
|
165 /** |
|
166 * Returns the value of the '<em><b>Target</b></em>' attribute. |
|
167 * <!-- begin-user-doc --> |
|
168 * <p> |
|
169 * If the meaning of the '<em>Target</em>' attribute isn't clear, |
|
170 * there really should be more of a description here... |
|
171 * </p> |
|
172 * <!-- end-user-doc --> |
|
173 * @return the value of the '<em>Target</em>' attribute. |
|
174 * @see #setTarget(String) |
|
175 * @see gcmodel.GcmodelPackage#getFile_Target() |
|
176 * @model |
|
177 * @generated |
|
178 */ |
|
179 String getTarget(); |
|
180 |
|
181 /** |
|
182 * Sets the value of the '{@link gcmodel.File#getTarget <em>Target</em>}' attribute. |
|
183 * <!-- begin-user-doc --> |
|
184 * <!-- end-user-doc --> |
|
185 * @param value the new value of the '<em>Target</em>' attribute. |
|
186 * @see #getTarget() |
|
187 * @generated |
|
188 */ |
|
189 void setTarget(String value); |
|
190 |
|
191 } // File |