Skip to content

Commit fc2b3ac

Browse files
authored
Merge pull request #64 from kieler/als/master
Various improvements and new features for OO, dataflow and timed SCCharts
2 parents 7ab617e + 59bbc53 commit fc2b3ac

314 files changed

Lines changed: 401184 additions & 318681 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

plugins/de.cau.cs.kieler.annotations/src-gen/de/cau/cs/kieler/annotations/serializer/AbstractAnnotationsSemanticSequencer.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ else if (rule == grammarAccess.getAnnotationRule()
102102
}
103103

104104
/**
105+
* <pre>
105106
* Contexts:
106107
* Annotation returns CommentAnnotation
107108
* ValuedAnnotation returns CommentAnnotation
@@ -111,45 +112,52 @@ else if (rule == grammarAccess.getAnnotationRule()
111112
*
112113
* Constraint:
113114
* values+=COMMENT_ANNOTATION
115+
* </pre>
114116
*/
115117
protected void sequence_CommentAnnotation(ISerializationContext context, CommentAnnotation semanticObject) {
116118
genericSequencer.createSequence(context, semanticObject);
117119
}
118120

119121

120122
/**
123+
* <pre>
121124
* Contexts:
122125
* CommentAnnotatonSL returns CommentAnnotation
123126
*
124127
* Constraint:
125128
* values+=SL_COMMENT_ANNOTATION
129+
* </pre>
126130
*/
127131
protected void sequence_CommentAnnotatonSL(ISerializationContext context, CommentAnnotation semanticObject) {
128132
genericSequencer.createSequence(context, semanticObject);
129133
}
130134

131135

132136
/**
137+
* <pre>
133138
* Contexts:
134139
* Annotation returns StringAnnotation
135140
* ValuedAnnotation returns StringAnnotation
136141
* KeyStringValueAnnotation returns StringAnnotation
137142
*
138143
* Constraint:
139144
* (name=ExtendedID values+=EStringAllTypes values+=EStringAllTypes*)
145+
* </pre>
140146
*/
141147
protected void sequence_KeyStringValueAnnotation(ISerializationContext context, StringAnnotation semanticObject) {
142148
genericSequencer.createSequence(context, semanticObject);
143149
}
144150

145151

146152
/**
153+
* <pre>
147154
* Contexts:
148155
* Pragma returns Pragma
149156
* PragmaTag returns Pragma
150157
*
151158
* Constraint:
152159
* name=ExtendedID
160+
* </pre>
153161
*/
154162
protected void sequence_PragmaTag(ISerializationContext context, Pragma semanticObject) {
155163
if (errorAcceptor != null) {
@@ -163,71 +171,82 @@ protected void sequence_PragmaTag(ISerializationContext context, Pragma semantic
163171

164172

165173
/**
174+
* <pre>
166175
* Contexts:
167176
* QuotedStringAnnotation returns StringAnnotation
168177
* QuotedKeyStringValueAnnotation returns StringAnnotation
169178
*
170179
* Constraint:
171180
* (name=ExtendedID values+=STRING values+=STRING*)
181+
* </pre>
172182
*/
173183
protected void sequence_QuotedKeyStringValueAnnotation(ISerializationContext context, StringAnnotation semanticObject) {
174184
genericSequencer.createSequence(context, semanticObject);
175185
}
176186

177187

178188
/**
189+
* <pre>
179190
* Contexts:
180191
* QuotedStringAnnotation returns TypedStringAnnotation
181192
* QuotedTypedKeyStringValueAnnotation returns TypedStringAnnotation
182193
*
183194
* Constraint:
184195
* (name=ExtendedID type=ExtendedID values+=STRING values+=STRING*)
196+
* </pre>
185197
*/
186198
protected void sequence_QuotedTypedKeyStringValueAnnotation(ISerializationContext context, TypedStringAnnotation semanticObject) {
187199
genericSequencer.createSequence(context, semanticObject);
188200
}
189201

190202

191203
/**
204+
* <pre>
192205
* Contexts:
193206
* RestrictedTypeAnnotation returns StringAnnotation
194207
* RestrictedKeyStringValueAnnotation returns StringAnnotation
195208
*
196209
* Constraint:
197210
* (name=ExtendedID values+=EStringBoolean values+=EStringBoolean*)
211+
* </pre>
198212
*/
199213
protected void sequence_RestrictedKeyStringValueAnnotation(ISerializationContext context, StringAnnotation semanticObject) {
200214
genericSequencer.createSequence(context, semanticObject);
201215
}
202216

203217

204218
/**
219+
* <pre>
205220
* Contexts:
206221
* RestrictedTypeAnnotation returns TypedStringAnnotation
207222
* RestrictedTypedKeyStringValueAnnotation returns TypedStringAnnotation
208223
*
209224
* Constraint:
210225
* (name=ExtendedID type=ExtendedID values+=EStringBoolean values+=EStringBoolean*)
226+
* </pre>
211227
*/
212228
protected void sequence_RestrictedTypedKeyStringValueAnnotation(ISerializationContext context, TypedStringAnnotation semanticObject) {
213229
genericSequencer.createSequence(context, semanticObject);
214230
}
215231

216232

217233
/**
234+
* <pre>
218235
* Contexts:
219236
* Pragma returns StringPragma
220237
* StringPragma returns StringPragma
221238
*
222239
* Constraint:
223240
* (name=ExtendedID values+=EStringAllTypes values+=EStringAllTypes*)
241+
* </pre>
224242
*/
225243
protected void sequence_StringPragma(ISerializationContext context, StringPragma semanticObject) {
226244
genericSequencer.createSequence(context, semanticObject);
227245
}
228246

229247

230248
/**
249+
* <pre>
231250
* Contexts:
232251
* Annotation returns TagAnnotation
233252
* RestrictedTypeAnnotation returns TagAnnotation
@@ -236,6 +255,7 @@ protected void sequence_StringPragma(ISerializationContext context, StringPragma
236255
*
237256
* Constraint:
238257
* name=ExtendedID
258+
* </pre>
239259
*/
240260
protected void sequence_TagAnnotation(ISerializationContext context, TagAnnotation semanticObject) {
241261
if (errorAcceptor != null) {
@@ -249,13 +269,15 @@ protected void sequence_TagAnnotation(ISerializationContext context, TagAnnotati
249269

250270

251271
/**
272+
* <pre>
252273
* Contexts:
253274
* Annotation returns TypedStringAnnotation
254275
* ValuedAnnotation returns TypedStringAnnotation
255276
* TypedKeyStringValueAnnotation returns TypedStringAnnotation
256277
*
257278
* Constraint:
258279
* (name=ExtendedID type=ExtendedID values+=EStringAllTypes values+=EStringAllTypes*)
280+
* </pre>
259281
*/
260282
protected void sequence_TypedKeyStringValueAnnotation(ISerializationContext context, TypedStringAnnotation semanticObject) {
261283
genericSequencer.createSequence(context, semanticObject);

plugins/de.cau.cs.kieler.core/src/de/cau/cs/kieler/core/definitions/DynamicTicks.xtend

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class DynamicTicks {
2727
public static val IProperty<Boolean> DYNAMIC_TICK_COMPILATION =
2828
new Property<Boolean>("de.cau.cs.kieler.core.dynamic.ticks", false)
2929

30+
public static val MSEC_SIM_TAG = "dynamic-ticks-msec"
3031
public static val TAG = "dynamic-ticks"
3132
public static val SLEEP_T = "sleepT"
3233
public static val DELTA_T = "deltaT"

0 commit comments

Comments
 (0)