-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
1365 lines (1231 loc) · 60 KB
/
community.html
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Xtext - Community</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="The website of Eclipse Xtext, an open-source framework for development of programming languages and domain-specific languages">
<meta name="author" content="Sven Efftinge">
<meta name="author" content="Miro Spoenemann">
<!-- styles -->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="/Xtext/images/favicon.png">
<link href="/Xtext/css/bootstrap.css" rel="stylesheet" type='text/css'>
<link href="/Xtext/css/bootstrap-responsive.css" rel="stylesheet" type='text/css'>
<link href="/Xtext/css/shield-responsive.css" rel="stylesheet" type='text/css'>
<link href='/Xtext/css/fonts.css' rel='stylesheet' type='text/css'>
<link href="/Xtext/css/prettyPhoto.css" rel="stylesheet" media="screen" type='text/css'>
<link href="/Xtext/css/prettify.css" type="text/css" rel="stylesheet"/>
<link href="/Xtext/css/style.css" rel="stylesheet" type='text/css'>
<!-- cover flow -->
<link href="/Xtext/css/coverflow.css" rel="stylesheet" type='text/css'>
<!--[if lt IE 9]>
<link href="/css/iebugs.css" rel="stylesheet" type='text/css'>
<![endif]-->
<!-- BEGIN Cookie Consent
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#000"
},
"button": {
"background": "#f1d600"
}
},
"theme": "edgeless",
"type": "opt-in",
onInitialise: function (status) {
var type = this.options.type;
var didConsent = this.hasConsented();
if (type == 'opt-in' && didConsent) {
// TODO: enable cookies
}
if (type == 'opt-out' && !didConsent) {
// TODO: disable cookies
}
},
onStatusChange: function(status, chosenBefore) {
var type = this.options.type;
var didConsent = this.hasConsented();
if (type == 'opt-in' && didConsent) {
// TODO: enable cookies
}
if (type == 'opt-out' && !didConsent) {
// TODO: disable cookies
}
},
onRevokeChoice: function() {
var type = this.options.type;
if (type == 'opt-in') {
// TODO: disable cookies
}
if (type == 'opt-out') {
// TODO: enable cookies
}
},
"content": {
"href": "https://www.eclipse.org/legal/privacy.php"
}
})});
</script>
END Cookie Consent -->
</head>
<body>
<header class="site-header">
<!-- Navbar -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse"
data-target=".nav-collapse"> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</a> <a class="brand" href="/Xtext/index.html"></a>
<div class="nav-collapse collapse" style="height: 0px;">
<ul class="nav">
<!--li ><a href="/Xtext/news.html">News</a></li-->
<li ><a href="/Xtext/download.html">Download</a></li>
<li ><a href="/Xtext/documentation/index.html">Documentation</a></li>
<li ><a href="/Xtext/community.html">Community</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Support & Trainings<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://info.itemis.com/professional-xtext-support" target="_blank">itemis</a></li>
<li><a href="https://www.typefox.io/language-engineering/" target="_blank">TypeFox</a></li>
</ul>
</li>
<li ><a href="https://eclipse.dev/Xtext/xtend">Xtend</a></li>
</ul>
<!--div class="nav pull-right">
<li ><a><iframe src="https://ghbtns.com/github-btn.html?user=eclipse&repo=xtext&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe></a></li>
</div-->
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<!-- Navbar End -->
</header>
<div id="page">
<div id="team" class="container clearfix">
<h2>Resources</h2>
<hr>
<div class="row">
<div class="span1"> </div>
<div class="span9 team">
<a href="https://www.eclipse.org/forums/index.php?t=thread&frm_id=27" class="anchor-in-div"></a>
<div class="row">
<div class="span1 ">
<img src="/Xtext/images/discussion-circ-darkgray.png" alt="image" class="image_left">
</div>
<div class="span2 ">
<h3>Forum</h3>
</div>
<div class="span6 ">
<p>The <strong>Xtext™ forum</strong> is the first source for getting answers in case you got stuck.
The community is very friendly.</p>
</div>
</div>
</div>
<div class="span1"> </div>
</div>
<div class="row">
<div class="span1"> </div>
<div class="span9 team">
<a href="https://github.com/eclipse-xtext/xtext/blob/main/Contribute.md#report-an-issue" class="anchor-in-div"></a>
<div class="row">
<div class="span1 ">
<img src="/Xtext/images/bug-circ-darkgray.png" alt="image" class="image_left">
</div>
<div class="span2 ">
<h3>Found a Bug?</h3>
</div>
<div class="span6 ">
<p>Bug reports and enhancement request are tracked at <strong>GitHub.org</strong>. Please
explain the problem and provide a reduced but reproducible example.</p>
</div>
</div>
</div>
<div class="span1"> </div>
</div>
<div class="row">
<div class="span1"> </div>
<div class="span9 team">
<a href="https://github.com/eclipse/xtext" class="anchor-in-div"></a>
<div class="row">
<div class="span1 ">
<img src="/Xtext/images/github-mark-darkgray.png" alt="image" class="image_left">
</div>
<div class="span2 ">
<h3>Github</h3>
</div>
<div class="span6 ">
<p>The Xtext™ source code is available on <strong>GitHub</strong>. You'll find more information on how to contribute to the project in the README.md contained there.</p>
</div>
</div>
</div>
<div class="span1"> </div>
</div>
<div class="row">
<div class="span1"> </div>
<div class="span9 team">
<a href="https://twitter.com/intent/user?screen_name=Xtext" class="anchor-in-div"></a>
<div class="row">
<div class="span1 ">
<img src="/Xtext/images/Twitter-bird-darkgray.png" alt="image" class="image_left">
</div>
<div class="span2 ">
<h3>Twitter</h3>
</div>
<div class="span6 ">
<p>If you are on twitter and want to get notified about Xtext™, you should consider following <strong>@Xtext</strong>.</p>
</div>
</div>
</div>
<div class="span1"> </div>
</div>
</div>
<br/><br/>
<div id="zoo" class="container">
<span class="edit-on-github pull-right">
<a href="https://github.com/eclipse/xtext-website/edit/published/xtext-website/community.html">Add your project!</a>
</span>
<h2>What others have built with Xtext™</h2>
<hr>
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>License</th>
<th>Category</th>
<th>Author(s)</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/INTO-CPS-Association/hybrid-cosim">A DSL for Semantic Adaptation</a></td>
<td>This language allows for quick and sound adaptations to be made for co-simulation units implementing the FMI standard for co-simulation.</td>
<td>INTO-CPS Association Public License</td>
<td>Framework</td>
<td>INTO-CPS Association</td>
</tr
<tr>
<td><a href="https://gemoc.org/ale-lang/">Action Language for EMF</a></td>
<td>ALE (Action Language for EMF) is an interpreted language to define behaviors on the top of Ecore metamodels. In other words, it makes Ecore metamodels executable.</td>
<td>EPL</td>
<td>Language</td>
<td>Fabien Coulon, Didier Vojtisek, Emmanuel Chebbi, Pierre Jeanjean, Erwan Bousse, Benoit Combemale</td>
</tr>
<tr>
<td><a href="https://www.arakhne.org/afc">AFC</a></td>
<td>AFC is a Java library that provides mathematic primitives, and other useful utility tools. The mathematic primitives
(vector, point, matrix, shape, etc.) are providing operator overridings for Xtext-based languages.</td>
<td>Apache 2 License</td>
<td>Library</td>
<td>Stéphane Galland, et al</td>
</tr>
<tr>
<td>Alloy4Eclipse</td>
<td>Specification and analysis of models in the Alloy4 language on
the Eclipse platform.</td>
<td>LGPL</td>
<td>Language</td>
<td>Mohamed Bouragba, Mohamed Said, Maxime Kapusta and Yoann Vasseur</td>
</tr>
<tr>
<td><a href="https://github.com/unicesi/amelia">Amelia DSL</a></td>
<td>Amelia is a compact DSL tailored for specifying and executing deployment workflows for distributed software systems.</td>
<td>LGPL-3.0</td>
<td>Software Deployment</td>
<td>Miguel Jiménez, Gabriel Tamura</td>
</tr>
<tr>
<td><a href="https://applause.github.io/">APPlause</a></td>
<td>Open source tool chain to produce native apps for different
devices such as Android, iPhone and iPad.</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Heiko Behrens, Peter Friese, et al</td>
</tr>
<tr>
<td><a href="https://www.artop.org/">ARText (part of Artop)</a></td>
<td>ARText, a textual language for the specification of AUTOSAR
systems. See the <a href="https://vimeo.com/16768196">very</a> <a href="https://vimeo.com/13154188">cool</a> <a href="https://vimeo.com/12080038">screencasts</a>.</td>
<td>closed source</td>
<td>Language</td>
<td>Sebastian Benz, Dana Wong</td>
</tr>
<tr>
<td><a href="https://co4e.com/assist">ASSIST - Architecture Synthesis for Safety-Critical Systems</a></td>
<td>The ASSIST Tool Suite automates the design of complex and distributed control systems. It creates software deployments and task schedules based on a textual description of the system architecture and its safety and timing requirements.</td>
<td>Commercial</td>
<td>Eclipse IDE, System Modeling</td>
<td>co4e GmbH</td>
</tr>
<tr>
<td><a href="https://avaloq.academy/en/avaloq-solution-model-development-asmd/k!114426/">Avaloq Solution Model Development (ASMD)</a></td>
<td>ASMD is a model driven client-server system providing customization tooling for the Avaloq Banking Platform. It supports customization experts managing more than 100k source artefacts in more than 60 DSLs that describe the aspects and behaviour of financial institutions.</td>
<td>Commercial</td>
<td>Eclipse IDE</td>
<td>Avaloq Solution Model Development and Compiler Framework team</td>
</tr>
<tr>
<td><a href="https://github.com/CohesionForce/avro-toolkit">Avro Toolkit</a></td>
<td>Framework for building Apache Avro schemas and converters from an EMF model.</td>
<td>EPL 2.0</td>
<td>Framework</td>
<td>CohesionForce, Inc</td>
</tr>
<tr>
<td><a href="https://github.com/balzac-lang/balzac">Balzac Language</a></td>
<td>Balzac is a domain-specific language to write Bitcoin transactions. <a href="https://balzac-lang.xyz">Online editor</a> and <a href="https://docs.balzac-lang.xyz/">documentation</a>.</td>
<td>Apache License 2.0</td>
<td>Language</td>
<td>Nicola Atzei</td>
</tr>
<tr>
<td><a href="https://www.stat.ubc.ca/~bouchard/blang/">Blang</a></td>
<td>Blang is a language and software development kit for doing Bayesian data analysis.</td>
<td>BSD-2-Clause License</td>
<td>Language</td>
<td><a href="https://arxiv.org/pdf/1912.10396.pdf">Blang development team</a></td>
</tr>
<tr>
<td><a href="https://i-bp.github.io/boem/">BOEM. Builder Of EMF Models</a></td>
<td>The aim of BOEM is to provide an API that eases the creation of EMF Models using Xtend syntax and thus to create 'compiling' models. This helps to a) speed up the creation of tests, b) improve readability, c) improve maintainability when metamodels evolve and d) ease the creation of interconnected models.</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Arthur Daussy, Jacob Geisel</td>
</tr>
<tr>
<td>Compiler Framework</td>
<td>The Compiler Framework (CF) supports state of the art implementations of DSLs for the Avaloq Banking Platform with stand-alone generators for the target platform.</td>
<td>Commercial</td>
<td>Framework</td>
<td>Avaloq Solution Model Development and Compiler Framework team</td>
</tr>
<tr>
<td><a href="https://contextmapper.org">Context Mapper</a></td>
<td>ContextMapper is an open source framework providing a Domain-specific Language (DSL) for strategic and tactic Domain-driven Design (DDD). It supports bounded context mapping, service decomposition, and PlantUML model generation. The framework components allow software architects and microservice designers to reverse engineers Context Maps from Spring Boot and Docker Compose files, to improve the architecture iteratively, and to convert models into other representations.</td>
<td>Apache 2.0 License</td>
<td>Language, Modeling Framework</td>
<td><a href="https://stefan.kapferer.ch/">Stefan Kapferer</a>, <a href="http://www.ifs.hsr.ch/Olaf-Zimmermann.11623.0.html?&L=4">Olaf Zimmermann</a></td>
</tr>
<tr>
<td><a href="https://github.com/larzm42/dom3editor/">dom3editor</a></td>
<td>
This is a tool to help edit Dominions 3 mod files. It includes
context coloring, code completion, error checking and integrated help. You can
edit using the text editor or the form based entry view.
</td>
<td>GPL</td>
<td>Language</td>
<td>Larry Moore</td>
</tr>
<tr>
<td><a href="https://github.com/dsldevkit/dsl-devkit">DSL Developer Kit and Runtime Library</a></td>
<td>JDSL Developer Kit is an extension layer to Xtext built for active Xtext users. It extends Xtext runtime to handle more sophisticated cases in DSL design, to support scaling for larger models and better monitoring and recovery in headless frameworks based on Xtext. DDK comes with a few handy small DSLs helping to standardize implementations of tools for DSLs.
</td>
<td>EPL 1.0</td>
<td>Framework</td>
<td>Avaloq Solution Model Development and Compiler Framework team</td>
</tr>
<tr>
<td><a href="https://github.com/dslmeinte/Xtext2-DSLs">dslmeinte's example DSLs</a></td>
<td>Various DSLs for technical domains (data modeling, dynamic screens, XSDs,
WSDLs).</td>
<td>MIT license</td>
<td>Example</td>
<td><a href="https://www.dslconsultancy.com/">Meinte Boersma</a></td>
</tr>
<tr>
<td><a href="https://projects.eclipse.org/projects/modeling.emft.b3/">Eclipse b3</a></td>
<td>New generation of Eclipse technology to simplify software build and assembly.</td>
<td>EPL</td>
<td>Language</td>
<td>Henrik Lindberg</td>
</tr>
<tr>
<td><a href="https://github.com/eclipse/gef/wiki/DOT-User-Guide">Eclipse GEF DOT</a></td>
<td><a href="https://graphviz.org/doc/info/lang.html">Graphviz DOT language</a> editor. For further information watch the
<a href="https://www.youtube.com/watch?v=GnSVLNYfGlk">recorded GEF DOT session</a> on the EclipseCon Europe 2018.</td>
<td>EPL-2.0</td>
<td>Language, Framework</td>
<td>Fabian Steeg, Michael Clay, Alexander Nyssen, Matthias Wienand, Tamas Miklossy, et al.</td>
</tr>
<tr>
<td><a href="https://projects.eclipse.org/projects/modeling.gemoc">Eclipse GEMOC Studio</a></td>
<td>The GEMOC Studio provides generic components for the development, integration, and use of heterogeneous executable modeling languages. It includes execution trace management, model animation, advanced debugging, and heterogeneous model coordination services.</td>
<td>EPL</td>
<td>Framework</td>
<td><a href="https://projects.eclipse.org/projects/modeling.gemoc/who">GEMOC contributors</a></td>
</tr>
<tr>
<td><a href="https://eclipse.dev/elk">Eclipse Layout Kernel (ELK)</a></td>
<td>ELK is a collection of diagram layout algorithms implemented in Java and provides ways for the algorithms to be easily used in Eclipse-based applications.</td>
<td>EPL-2.0</td>
<td>Library</td>
<td>Ulf Rüegg, Christoph Daniel Schulze, Miro Spönemann, and lots of contributors</td>
</tr>
<tr>
<td><a href="https://eclipse.dev/mita/">Eclipse Mita</a></td>
<td>Eclipse Mita is a programming language that is focused on making Internet-Of-Things things easier to program, especially for developers without an embedded development background. It aims to increase programmer productivity, enables fast exploration of use-cases and tries to make you feel right at home on an embedded device.</td>
<td>EPL-2.0</td>
<td>Language, Embedded Systems</td>
<td>Robin Herrmann, Thomas Kutzer, Simon Wegendt, Christian Weichel et al.</td>
</tr>
<tr>
<td><a href="https://projects.eclipse.org/projects/modeling.emf.mwe">Eclipse Modeling Workflow Engine (MWE2)</a></td>
<td>The modeling workflow engine supports orchestration of different Eclipse modeling components, such as reading EMF resources, performing operations/transformations on them and writing them back or generating any number of other artifacts out of the information.</td>
<td>EPL-2.0</td>
<td>Language, Framework</td>
<td>Christian Dietrich, Dennis Huebner, Sebastian Zarnekow</td>
</tr>
<tr>
<td><a href="https://projects.eclipse.org/projects/modeling.smartmdsd">Eclipse SmartMDSD Toolchain</a></td>
<td>The SmartMDSD Toolchain is an Eclipse-based Integrated Development Environment (IDE) for the model-driven development of component-based robotics software. The SmartMDSD Toolchain provides support and guidance to apply structures and best-practices for the composition of software building blocks to robotics applications.</td>
<td>EPL-2.0</td>
<td>Eclipse Modeling Project</td>
<td>Alex Lotz, Dennis Stampfer, Matthias Lutz, and Christian Schlegel</td>
</tr>
<tr>
<td><a href="https://projects.eclipse.org/projects/technology.stem">Eclipse STEM</a></td>
<td>The Spatiotemporal Epidemiological Modeler (STEM) tool is designed to help scientists and public health officials create and use spatial and temporal models of emerging infectious diseases.</td>
<td>EPL-2.0</td>
<td>Eclipse Technology</td>
<td><a href="https://wiki.eclipse.org/The_STEM_Development_Team">author(s)</a></td>
</tr>
<tr>
<td><a href="https://eclipse.dev/vorto/">Eclipse Vorto</a></td>
<td>Eclipse Vorto offers a language to describe semantic models of digital twins, a repository to manage the semantic models, plugins to generate code or API documentation and payload mapping for telemetry data.</td>
<td>EPL-2.0</td>
<td>IoT, Language, Device Abstraction, Repository</td>
<td>Alexander Edelmann, Menahem Raccah Lisei, Kevin Olotu, Somesh Kumar, Tobias Gauss, et al.</td>
</tr>
<tr>
<td><a href="https://github.com/LorenzoBettini/edelta">Edelta</a></td>
<td>An Xtext DSL for EMF metamodels refactoring and migration.</td>
<td>EPL</td>
<td>Language</td>
<td>Lorenzo Bettini</td>
</tr>
<tr>
<td><a href="https://elysium.thsoft.hu">Elysium</a></td>
<td>LilyPond IDE for Eclipse.</td>
<td>EPL</td>
<td>Language</td>
<td>Denes Harmath</td>
</tr>
<tr>
<td><a href="https://eclipse.dev/emfcloud/#coffeeeditoroverview">EMF.cloud Coffee Editor</a></td>
<td>An example web-based modeling tool using EMF.cloud technologies used for demonstration and documentation. Integrates Eclipse Theia, Xtext, Xtend, Eclipse GLSP, JSON Forms and the EMF.cloud model server.</td>
<td>EPL 2.0</td>
<td>Example</td>
<td>Eugen Neufeld, Lucas Koehler, Martin Fleck, Philip Langer, Stefan Dirix, et al.</td>
</tr>
<tr>
<td>EMF Customizer</td>
<td>EMF Customizer is a model (Ecore based)
customization/styling/refining CSS like textual DSL (Domain Specific Language)
targeting MDSD tool chains end users. </td>
<td>EPL</td>
<td>Language</td>
<td>Cedric Vidal</td>
</tr>
<tr>
<td><a href="https://eclipse.dev/emf-parsley">EMF Parsley</a></td>
<td>EMF Parsley is an Eclipse project that provides a set of reusable UI components based on EMF.</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Lorenzo Bettini, Francesco Guidieri, Vincenzo Caselli</td>
</tr>
<tr>
<td><a href="https://github.com/cedricvidal/emf-scaffolding/">EMF Scaffolding</a></td>
<td>Implementation of the principle of dynamic inplace scaffolding
with EMF presented in July 2009 <a href="https://www.slideshare.net/cedric.vidal/rmll-eclipse-acceleo-day-mdsd-scaffolding-and-acceleo-cdric-vidal-11">at Eclipse Acceleo Day</a>.
</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Cedric Vidal and Jerome Benois</td>
</tr>
<tr>
<td><a href="https://www.atlanmod.org/emfviews/">EMF Views</a></td>
<td>EMF Views is an Eclipse plugin that brings the concept of database views to the modeling world. Model views (focusing on parts of a model and/or combining several models) can be created and then navigated/queried/used as regular models for further model transformation, code generation, etc.</td>
<td>EPL, GPL</td>
<td>Language, Framework</td>
<td>Florent Marchand de Kerchove, Hugo Bruneliere</td>
</tr>
<tr>
<td><a href="https://emoflon.org/">eMoflon</a></td>
<td>eMoflon is a tool suite for Model-Driven Engineering (MDE) that provides a range of visual and formal languages for (meta)modelling and model management.</td>
<td>GPL 3.0 and EPL-2.0</td>
<td>Model Transformation Framework</td>
<td>Anthony Anjorin, Sebastian Ehmes, Lars Fritsche, Nils Weidmann</td>
</tr>
<tr>
<td><a href="https://eclipse.dev/etrice/">eTrice</a></td>
<td>eTrice is a Modeling Tool for distributed eventdriven realtime systems based on
Realtime Object Oriented Modeling (ROOM), not UML. Textual and graphical ROOM
editors, codegenerators and runtime libraries for Java, C++ and C
will be provided.</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Henrik Rentz-Reichert, Thomas Schuetz</td>
</tr>
<tr>
<td><a href="https://github.com/eventB-Soton/XEventB">Event-B CamilleX</a></td>
<td>This feature provides Xtext-based editors for Event-B components within the Rodin Platform (https://wiki.event-b.org/). It also extends the Event-B method for compositional modelling.</td>
<td>Eclipse Public License v1.0</td>
<td>System Modelling</td>
<td>Michael Butler, Dana Dghaym, Thai Son Hoang, Asieh Salehi-Fathabadi, Colin Snook</td>
</tr>
<tr>
<td><a href="https://fj-eclipse.sourceforge.net/">fj-eclipse</a></td>
<td>An Eclipse-based IDE for Featherweight Java, implemented using Xtext.</td>
<td>GPL</td>
<td>Language</td>
<td>Lorenzo Bettini</td>
</tr>
<tr>
<td><a href="https://opcoach.github.io/genModelAddon/">Genmodel addon</a></td>
<td>This project is used to separate properly the EMF generated code and your developed code.</td>
<td>Eclipse Public License 1.0</td>
<td>Code Generator</td>
<td>Olivier Prouvost (OPCoach) [email protected]</td>
</tr>
<tr>
<td><a href="https://github.com/cloudsmith/geppetto">Geppetto</a></td>
<td>Integrated development environment for the Puppet System Admin tools. (The
PP manifest language is Ruby like).</td>
<td>EPL, Apache</td>
<td>Language</td>
<td>Henrik Lindberg, Cloudsmith Inc.</td>
</tr>
<tr>
<td><a href="https://github.com/intuit/graphql-xtext">graphql-xtext</a></td>
<td>A GraphQL SDL (schema definition language) lexer, parser, and validator that generates a traversable Abstract Syntax Tree from your GraphQL schema. GraphQL-Xtext will generate pure Java Objects that can be used at runtime.</td>
<td>Apache 2 License</td>
<td>Language</td>
<td>Ashpak Shaikh, Bhavin Shah, Carlo Aureus, Samuel Ko</td>
</tr>
<tr>
<td><a href="https://github.com/gts-morpher/gts_morpher">GTSMorpher</a></td>
<td>GTSMorpher is a DSL for specifying graph-transformation systems (written in Eclipse Henshin) and their composition. </td>
<td>EPL</td>
<td>Language</td>
<td>Steffen Zschaler</td>
</tr>
<tr>
<td><a href="https://github.com/CohesionForce/hla-toolkit">HLA Toolkit</a></td>
<td>Toolkit for working with High Level Architecture (HLA) Federated Object Models and generating a logging federate.</td>
<td>EPL-2.0</td>
<td>Framework</td>
<td>CohesionForce, Inc</td>
</tr>
<tr>
<td><a href="https://github.com/japkit/japkit">Japkit</a></td>
<td>Japkit is an annotation processor that allows to develop Java code generators by using code templates written in Java with some annotations. There is no need to write any imperative code, which makes the code generators short and concise and so eases their maintenance.</td>
<td>Apache 2 License</td>
<td>Tool</td>
<td>Stefan Ocke</td>
</tr>
<tr>
<td><a href="https://community.jaspersoft.com/project/jaspersoft-studio">Jaspersoft Studio, Report Designer for JasperReports</a></td>
<td>The Expression Editor allows to compose Java-like expressions enriched with JasperReports specific tokens.
The SQL Query Designer, in text mode, allows to edit simple and advanced SQL expressions.</td>
<td>EPL</td>
<td>Report Designer</td>
<td>Jaspersoft Studio Team (Veaceslav Chicu, Massimo Rabbi, Marco Orlandin and Giulio Toffoli)</td>
</tr>
<tr>
<td><a href="https://github.com/itemis/jbc">JBC</a></td>
<td>JBC is an Eclipse plugin that enables the developer to view and edit files containing java byte code (*.class) inside Eclipse.</td>
<td>EPL 1.0</td>
<td>Developer Tool</td>
<td>Arne Deutsch</td>
</tr>
<tr>
<td><a href="https://jnario.org/">Jnario</a></td>
<td>Executable Specifications for Java. See the XtextCast (<a href="https://xtextcasts.org/episodes/9-jnario-test-framework">slides</a>, <a href="https://www.youtube.com/watch?v=j-IouNAkGvw&feature=youtu.be">video</a>) and the <a href="https://www.youtube.com/watch?v=jCgPfxaY8XQ">recorded EclipseCon session</a> about this project.</td>
<td>Eclipse Public License v1.0</td>
<td>Testing, Test-driven Development (TDD)</td>
<td>Sebastian Benz, Birgit Engelmann</td>
</tr>
<tr>
<td><a href="https://www.jolie-lang.org/">Joliepse IDE</a></td>
<td>Joliepse is an Integrated Development Environment (IDE) for the JOLIE
programming language, the first full-fledged programming language based upon
the service-oriented programming paradigm and support classes.</td>
<td>GPL</td>
<td>Language</td>
<td>Diego Castronuovo (castronu at gmail dot com)</td>
</tr>
<tr>
<td><a href="https://github.com/nittka/Jtag">Jtag</a></td>
<td>Lightweight image tagging.</td>
<td>EPL</td>
<td>Language</td>
<td>Alexander Nittka</td>
</tr>
<tr>
<td><a href="https://diverse-project.github.io/k3/">Kermeta 3</a></td>
<td>K3 is an extension of Xtend programming language. It allows to "re-open" the classes generated from an Ecore metamodel using annotations in order to weave new features and operations.</td>
<td>EPL</td>
<td>Language</td>
<td>Inria/IRISA</td>
</tr>
<tr>
<td><a href="https://www.rtsys.informatik.uni-kiel.de/en/research/kieler/">KIELER</a></td>
<td>An evaluation platform for new methods in model-based software
design (automatic layout, graphical / textual dynamic views, focus and context,
simulation, codegen,...).</td>
<td>EPL</td>
<td>Language</td>
<td>Rtsys group, Dep. of Computer Science, Uni Kiel</td>
</tr>
<tr>
<td><a href="https://github.com/mduft/lcdsl">Launch Configuration DSL (LcDsl)</a></td>
<td>LcDsl provides a way of defining Eclipse launch configurations in a human readable textual form. This improves maintainability and eases versioning/merging of launch configurations.</td>
<td>Eclipse Public License 1.0</td>
<td>Eclipse IDE</td>
<td>Markus Duft</td>
</tr>
<tr>
<td><a href="https://amishne.github.io/llvm-ir-editor/">LLVM IR SDK</a></td>
<td>A rich LLVM IR editor plugin for Eclipse.</td>
<td>BSD</td>
<td>Language</td>
<td>Alon Mishne</td>
</tr>
<tr>
<td><a href="https://code.google.com/p/llvm4e/">LLVM4e</a></td>
<td>Xtext-based Eclipse editor for LLVM (Low Level Virtual Machine)
Assembly Language *.ll files.</td>
<td>EPL</td>
<td>Language</td>
<td>Cedric Vidal</td>
</tr>
<tr>
<td><a href="https://logicals.com/">logi.CAD 3</a></td>
<td>logi.CAD 3 is a tool for programming a wide variety of PLCs (Programmable Logic Controllers) according to the industry standard IEC 61131-3. It is an Eclipse RCP based (E3/E4) integrated development environment (IDE) using Xtext for implementing the editors for the IEC programming languages ST (Structured Text), FBD (Function Block Diagram) and SFC (Sequential Function Chart).</td>
<td>Commercial</td>
<td>Language</td>
<td>logi.cals Austria (https://logicals.com)</td>
</tr>
<tr>
<td><a href="https://mads.sourceforge.net">MADS</a></td>
<td>
MADS (Multipurpose Agricultural Data System) is a free open-source tool
for modelling and analysis of agricultural activities - crops, livestock,
forestry and others - in developing countries, at sector, regional or project
level.
</td>
<td>EPL, GPL</td>
<td>RCP Application</td>
<td>Michel Simeon</td>
</tr>
<tr>
<td><a href="https://github.com/xtext/maven-xtext-example">Maven Xtext Example</a></td>
<td>A small example to show how to configure a Maven build for an Xtext language and how to use it from Maven and Gradle.</td>
<td>EPL-2.0</td>
<td>Example</td>
<td>Christian Dietrich, Dennis Huebner</td>
</tr>
<tr>
<td><a href="https://www.mechatronicuml.org">MechatronicUML Website</a>, <a href="https://svn-serv.cs.upb.de/mechatronicuml/">MechatronicUML SVN</a></td>
<td>
MechatronicUML is a free open-source tool suite
that offers language, process and tooling to design software for networked cyber-physical systems.
We offer Xtext grammars for: Action Language, API Description, DOT/ Graphviz, LPSolve, MTCTL, Model Dependencies.
</td>
<td>EPL</td>
<td>Language, Tool Suite</td>
<td>Project Group Mechatronic Systems Design, Fraunhofer Institute for Production Technology IPT; Software Engineering Group, Heinz Nixdorf Institute, University of Paderborn</td>
</tr>
<tr>
<td><a href="http://melange.inria.fr/">Melange Language</a></td>
<td>Melange is a language workbench that provides a modular approach for assembling, integrating, and customizing multiple domain-specific language (DSL) specifications and implementations.</td>
<td>EPL</td>
<td>Language</td>
<td>T. Degueule, F. Coulon, D. Vojtisek, E. Bousse, A. Blouin, et al</td>
</tr>
<tr>
<td><a href="https://www.openhub.net/p/mod4j/">mod4j</a></td>
<td>Open source DSL-based environment for developing administrative
enterprise applications.</td>
<td>EPL</td>
<td>Language, Framework</td>
<td>Jos Warmer</td>
</tr>
<tr>
<td><a href="https://modulestudio.de/en">ModuleStudio</a></td>
<td>A DSL with tooling based on Sirius and Xtext to describe structure and behaviour of web applications.
The models are used to generate extensions for a PHP-based web application framework.</td>
<td>closed source</td>
<td>Language, Tool Suite</td>
<td>Axel Guckelsberger</td>
</tr>
<tr>
<td><a href="https://eclipse.dev/n4js/">N4JS</a></td>
<td>N4JS is a general-purpose programming language based on ECMAScript with several additional features. In particular, N4JS adds a static type system as reliable as that of Java, but with the flexibility of JavaScript.</td>
<td>EPL-1.0</td>
<td>Language</td>
<td>Eclipse N4JS Project, enfore AG</td>
</tr>
<tr>
<td><a href="https://github.com/rlogiacco/Natural">Natural</a></td>
<td>Natural is a collection of Eclipse plugins to enable rich smart editing of acceptance tests using natural language definition files. It currently supports Cucumber and JBehave syntax.</td>
<td>Eclipse Public License 1.0</td>
<td>BDD</td>
<td>Roberto Lo Giacco, Aaron R. Miller</td>
</tr>
<tr>
<td><a href="https://code.google.com/a/eclipselabs.org/p/nusmv-tools/">nusmv-tools</a></td>
<td>The nusmv-tools project provides a set of tools for the model checker
<a href="https://nusmv.fbk.eu/">NuSMV</a>. Xtext is used to create an Eclipse
editor for the NuSMV input language. The editor is further enhanced by static
analysis checks (shown as Eclipse error markers) performed by an OSGi-fied
version of NuSMV itself. Watch the <a href="https://vimeo.com/21637768">screencast</a>.
</td>
<td>EPL</td>
<td>Language</td>
<td><a href="mailto://[email protected]">Siamak Haschemi</a></td>
</tr>
<tr>
<td><a href="https://wiki.eclipse.org/MDT/OCL">OCL</a></td>
<td>Editors for OCL expressions, documents, libraries. Standalone or
embedded in Ecore.</td>
<td>EPL-2.0</td>
<td>Language</td>
<td>Ed Willink</td>
</tr>
<tr>
<td><a href="https://github.com/atb/pt.isep.dsl.puml">PlantUML DSL</a></td>
<td>An open-source and academic project which aim is to provide an Xtext-based DSL for PlantUML.</td>
<td>EPL</td>
<td>Language</td>
<td>Alexandre Braganca</td>
</tr>
<tr>
<td><a href="https://github.com/Protelis/Protelis">Protelis</a></td>
<td>Protelis is a programming language aiming to produce reliable and robust collective behavior from uncoordinated local interactions among an assortment of different potentially mobile devices. Protelis is grounded on the paradigm of <i>aggregate programming</i>, a way of thinking about and decomposing problems that can be solved with a network of distributed sensors and computers.</td>
<td>GPL with linking exception</td>
<td>Language</td>
<td>Danilo Pianini, Jacob Beal, Matteo Francia, and others</td>
</tr>
<tr>
<td><a href="https://code.google.com/p/protobuf4e/">protobuf4e</a></td>
<td>Editor for Google's Protocol Buffers data interchange file
format. </td>
<td>EPL</td>
<td>Language</td>
<td>Cedric Vidal</td>
</tr>
<tr>
<td><a href="https://www.pxdoc.fr">pxDoc</a></td>
<td>pxDoc is a Domain Specific Language to design document generators. Since it is based on Xbase, it allows to implement document generators for any data that can be accessed with Java.</td>
<td>Commercial, free for personal use</td>
<td>Language, Framework</td>
<td>eXtreme Modeling Software</td>
</tr>
<tr>
<td><a href="https://wiki.eclipse.org/QVTd">QVTc and QVTr</a></td>
<td>Editors for QVT Core and Relational languages.</td>
<td>EPL-2.0</td>
<td>Language</td>
<td>Ed Willink</td>
</tr>
<tr>
<td><a href="https://github.com/LeKaitoW/raox">Rao X</a></td>
<td>This project is an implementation of the RAO modeling language in Eclipse, using Xbase.</td>
<td>MIT</td>
<td>Simulation System</td>
<td>Andrey Urusov, Pavel Bogachev, Kirill Alexandrovsky, Olga Zudina, Alexey Chernov and other contributors.</td>
</tr>
<tr>
<td><a href="https://github.com/zazuko/rdf-mapping-dsl-user">RDF Mapping DSL</a></td>
<td>A friendly language for writing data mappings to <a href="https://en.wikipedia.org/wiki/Resource_Description_Framework">RDF</a>. Includes generators for R2RML, RML, CARML and CSVW output.</td>
<td>Commercial, free for personal use</td>
<td>Language</td>
<td><a href="https://zazuko.com/">Zazuko GmbH</a></td>
</tr>
<tr>
<td><a href="https://sourceforge.net/projects/rng-eclipse/">RELAX NG for Eclipse</a></td>
<td>Provides support for editing RELAX NG documents in the Eclipse
IDE. Integrates with standard WST XML editor to provide content completion and
validation of edited XML file based on it's RELAX NG schema.</td>
<td>EPL</td>
<td>Language</td>
<td>Dave Carver</td>
</tr>
<tr>
<td><a href="https://github.com/NielsLiisberg/RPG-lexer">RPG Lexer (IBM ILE RPG)</a></td>
<td>This project is for tooling and better understanding of the ILE RPG language. Tooling like plug in for 100% free-RPG editors running in i.e. Eclipse with code completion etc. or even to build transpilers to create C, C# or JAVA code from RPG.</td>
<td>MIT License</td>
<td>Tool</td>
<td>Niels Liisberg</td>
</tr>
<tr>
<td><a href="https://github.com/heutelbeck/sapl-policy-engine">SAPL Policy Engine</a></td>
<td>A reactive policy engine implementing attribute-based access control (ABAC). The engine features support for publish-subscribe authorization and a deep Spring integration. https://sapl.io</td>
<td>Apace 2.0</td>
<td>Security</td>
<td>Dominic Heutelbeck</td>
</tr>
<tr>
<td><a href="http://www.sarl.io">SARL</a></td>
<td>SARL is a general-purpose agent-oriented language. It aims at providing the fundamental abstractions for
dealing with concurrency, distribution, interaction, decentralization, reactivity, autonomy and dynamic
reconfiguration. The language is platform- and architecture-independent.
The default execution environment is the <a href="http://www.janusproject.io">Janus platform</a>.</td>
<td>Apache 2 License</td>
<td>Language, Framework</td>
<td>Sebastian Rodriguez, Nicolas Gaud, Stéphane Galland</td>
</tr>
<tr>
<td><a href="https://sculptorgenerator.org">Sculptor</a></td>
<td>You express your design intent in a textual DSL, from which
Sculptor generates high quality Java code and configuration.</td>
<td>Apache 2 License</td>
<td>Language, Framework</td>
<td>Torsten Juergeleit, Patrik Nordwall and others</td>
</tr>
<tr>
<td><a href="https://github.com/crapo/sadlos2/wiki">Semantic Application Design Language (SADL)</a></td>
<td>SADL is a controlled-English ontology language and an IDE for building models in that language. SADL models are translated directly into OWL plus rules plus other constructs for model testing and maintenance.</td>
<td>Eclipse Public License</td>
<td>Semantic Modeling</td>
<td>GE Research</td>
</tr>
<tr>
<td><a href="https://sadl.sourceforge.net/">Semantic Application Design Language (SADL) Version 2</a></td>
<td>The Semantic Application Design Language (SADL) is a language for building
semantic models and expressing rules that capture additional domain
knowledge. The SADL-IDE (integrated development environment) is a set of
Eclipse plug-ins that support the editing and testing of semantic models
using the SADL language. </td>
<td>EPL</td>
<td>Language</td>
<td>Andrew Crapo, John Interrante, David Bracewell, Saurabh Gupta</td>
</tr>
<tr>
<td><a href="https://github.com/xtext/seven-languages-xtext">Seven Languages with Xtext</a></td>
<td>An example project of seven languages illustrating the power and flexibility of Xtext.</td>
<td>EPL-2.0</td>
<td>Example</td>
<td>Christian Dietrich, Holger Schill, Sebastian Zarnekow, Dennis Huebner</td>
</tr>
<tr>
<td><a href="https://code.google.com/a/eclipselabs.org/p/spray/">Spray</a></td>
<td>This project aims to provide Domain Specific Languages to describe
Visual DSL Editors against the Graphiti runtime, and provide code generation
(with Xtend2) to create the boilerplate code for realizing the implementation
against the Graphiti framework.</td>
<td>EPL 1.0</td>
<td>Framework</td>
<td>Jos Warmer, Karsten Thoms et. al.</td>
</tr>
<tr>
<td><a href="https://swrtj.sourceforge.net/">SWRTJ: Sugared Welterweight Record-Trait Java</a></td>
<td>A Java-like language where units of objects' functionality are modeled by
traits and by records (a construct that complements traits to model the state
part of objects).</td>
<td>GPL</td>
<td>Language</td>
<td>Fabio Strocco, Lorenzo Bettini</td>
</tr>
<tr>
<td><a href="https://github.com/eclipse-cbi/targetplatform-dsl">Target Platform Definition DSL and Generator</a></td>
<td>The Target Platform Definition DSL and Generator project provides an Xtext-based DSL with an advanced Eclipse editor and a generator to generate *.target files from the DSL that Eclipse PDE is able to read to provision a Target Platform.</td>
<td>EPL</td>
<td>Tool</td>
<td>Mikael Barbero and others</td>
</tr>
<tr>
<td><a href="https://github.com/nittka/terminology">Terminology</a></td>
<td>Lightweight terminology management. If spreadsheet is not enough and term bases are overkill, consider this plugin with advanced search functionality and hook for custom exporters.</td>
<td>EPL</td>
<td>Language</td>
<td>Alexander Nittka</td>
</tr>
<tr>
<td><a href="https://github.com/kuniss/xtext-ide-extensions">TextMate Grammars for the Xtext Language</a></td>
<td>TextMate grammars for Xtext language highlighting support in different editors, e.g. VS Code, ACE, Atom, Pygments, Rouge, Sublime 3 (except for VS Code, all not tested).</td>
<td>EPL-2.0</td>
<td>Editor Support</td>
<td>Denis Kuniß</td>
</tr>
<tr>
<td><a href="https://github.com/TelluIoT/ThingML">ThingML</a></td>
<td>ThingML is a modelling language, a set of tools, and a methodology. It includes editors and an advanced multi-platform code generation framework, which support multiple target programming languages (C, Java, JavaScript, Go).</td>
<td>Apache 2 License</td>
<td>Language, Framework</td>
<td>Franck Fleurey, Brice Morin</td>
</tr>
<tr>
<td><a href="https://github.com/mabauer/tinyscript">Tinyscript</a></td>
<td>Tinyscript is a simple Javascript-like scripting language written in Java. Its implementation is based on Xtext.</td>
<td>GPL</td>
<td>Language</td>
<td>Markus Bauer</td>
</tr>
<tr>
<td><a href="https://github.com/raghvendra-v/tosca-yaml-lsp">TOSCA DSL</a></td>
<td>IDE framework to develop and test <a href="https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=tosca">tosca</a> templates. It works with Eclipse, Idea and LSP.</td>
<td>GPL 3.0</td>
<td>Eclipse IDE, Language</td>
<td>raghvendra @ <a href="https://www.bt.com/">BT</a></td>
</tr>
<tr>
<td id="name"><a href="http://www.webxcerpt.com/VClipse/index.html">VClipse</a></td>
<td>VClipse is an Eclipse-based integrated development environment (IDE)
for product modeling for the SAP Variant Configurator (VC). VClipse supports the
specification of objects and dependencies in a textual domain specific language
called VCML. This enables the use of standard text comparison tools and version
control systems in the model development process.</td>
<td>EPL</td>
<td>Language</td>
<td>Tim Geisler, Aleksey Shumilin</td>
</tr>