Bonjour,
est ce possible de lire et parser une DSL avec groovy?
Example:
Merci davance pour vor idees.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280 modelSet EffectBearerMSet { lib ltmPMLib; mdObject LTM_EffectBearer; i18n com.avanon.blu.config.ltm.effectbearer; model BASE { param opRiskEffectRevId : PLAIN_DATA_TYPE { mapping : method opRiskEffectRevId; scenarios { view *; } } param referenceId : TEXT_LINE_TYPE { mapping : method referenceId; scenarios { view *; } options { } } param status : WORKFLOW_STATE_SELECTOR_TYPE { mapping : method status; scenarios { view *; } options { workflowType = "EFFECT_BEARER"; } } param sharePercent : DECIMAL_TYPE { mapping : method sharePercent; scenarios { modify *; } options { minValue = 0.0; maxValue = 100.0; width = "5"; } } param orgUnit : BLU_TREE_SELECTOR_TYPE { mapping : method admOrgUnitId; scenarios { modify *; } initValue ""; options { treeType = "ADM_ORG_UNIT"; } } param bookingDate : DATE_TYPE { mapping : method long00; scenarios { modify *; } options { } } param accountNumber : TEXT_LINE_TYPE { mapping : method sstring02; scenarios { modify *; } options { } } param costCenter : TEXT_LINE_TYPE { mapping : method sstring01; scenarios { modify *; } options { } } param costUnit : COMBO_BOX_TYPE { mapping : method sstring06; scenarios { modify *; } options { allowFreeText = true; comboboxParamName = "costUnit"; } } param rejectedBy : USER_SELECTOR_TYPE { mapping : method rejByUserId; scenarios { view *; } } param rejectedOn : DATE_TYPE { mapping : method rejectedOn; scenarios { view *; } } param confirmedBy : USER_SELECTOR_TYPE { mapping : method confByUserId; scenarios { view *; } } param confirmedOn : DATE_TYPE { mapping : method confirmedOn; scenarios { view *; } } param bsnId : TEXT_LINE_TYPE { mapping : method sstring00; scenarios { modify *; } options { } } } model SEARCH_CRITERIA { searchCriteria; param effectBearer_ReferenceId : TEXT_AREA_TYPE { mapping : method referenceId; scenarios { modify *; } options { } searchOptions { type = "keyword"; } } param effectBearer_Status : WORKFLOW_STATE_SELECTOR_TYPE { mapping : method status; scenarios { modify *; } options { workflowType = "EFFECT_BEARER"; } } param effectBearer_OrgUnit : BLU_TREE_SELECTOR_LIST_TYPE { mapping : method admOrgUnitId; scenarios { modify *; } initValue "com.avanon.blu.jooq.gen.tables.pojos.adm.OrgUnit:1"; options { treeType = "ADM_ORG_UNIT"; dontCopy = true; } } param effectBearer_RepOrgUnit : REPORTING_ORGUNIT_SEARCH_TYPE { mapping : "orgUnitId"; scenarios { modify *; } initValue ""; options { treeType = "ADM_REP_ORG_UNIT"; dontCopy = false; } } param effectBearer_BookingDate : DATE_RANGE_TYPE { mapping : "long00"; scenarios { modify *; } options { } } param effectBearer_CostCenter : TEXT_LINE_TYPE { mapping : method sstring01; scenarios { modify *; } options { } searchOptions { logicalEntityName = "ROOT"; } } param effectBearer_CostUnit : COMBO_BOX_TYPE { mapping : method sstring06; scenarios { modify *; } options { allowFreeText = true; comboboxParamName = "effectBearer_CostUnit"; } } param effectBearer_AccountNumber : TEXT_LINE_TYPE { mapping : method sstring02; scenarios { modify *; } options { } } param effectBearer_ConfirmedBy : USER_SELECTOR_TYPE { mapping : method confByUserId; scenarios { modify *; } options { } } param effectBearer_RejectedBy : USER_SELECTOR_TYPE { mapping : method rejByUserId; scenarios { modify *; } options { } } param effectBearer_FirstCreationDate : DATE_RANGE_TYPE { mapping : method createDate; scenarios { modify *; } options { } } } model TITLE { param referenceId : TEXT_LINE_TYPE { mapping : method referenceId; scenarios { view *; } options { } } } model MANDATORY { param sharePercent : DECIMAL_TYPE { mapping : method sharePercent; scenarios { modify *; } options { minValue = 0.0; maxValue = 100.0; mandatory = true; } } param orgUnit : BLU_TREE_SELECTOR_TYPE { mapping : method admOrgUnitId; initValue ""; scenarios { modify *; } options { mandatory = true; treeType = "ADM_ORG_UNIT"; requireLeaf = true; } } param bookingDate : DATE_TYPE { mapping : method long00; scenarios { modify *; } options { } } param userComment : TEXT_LINE_TYPE { mapping : method userComment; scenarios { modify *; } options { mandatory = true; } } } }
Soulman
Partager