-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
973 lines (469 loc) · 31.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="getting-started, ">
<title> Spoon - Source Code Analysis and Transformation for Java | Spoon</title>
<link rel="stylesheet" type="text/css" href="css/syntax.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/modern-business.css">
<link rel="stylesheet" type="text/css" href="css/lavish-bootstrap.css">
<link rel="canonical" href="/">
<link rel="stylesheet" type="text/css" href="css/customstyles.css">
<link rel="stylesheet" type="text/css" href="css/theme-mauve.css">
<link rel="canonical" href="/">
<link rel="alternate" type="application/rss+xml" title="" href="feed.xml" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="js/jquery.navgoco.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/toc.js"></script>
<script src="js/customscripts.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container topnavlinks">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="fa fa-home fa-lg navbar-brand" href="index.html"> <span class="projectTitle"> Spoon</span></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<!-- entries without drop-downs appear here -->
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
<li><a href="papers.html">Papers</a></li>
<li><a href="ecosystem.html">Ecosystem</a></li>
<li><a href="about.html">About</a></li>
<li><a href="https://ci.inria.fr/sos/" target="_blank">Jenkins</a></li>
<li><a href="https://github.com/INRIA/spoon" target="_blank">Github</a></li>
<!-- entries with drop-downs appear here -->
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
<li class="dropdown">
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<div class="container">
<div class="col-lg-12"> </div>
<!-- Content Row -->
<div class="row">
<!-- Sidebar Column -->
<div class="col-md-3">
<script>
$(document).ready(function() {
// Initialize navgoco with default options
$("#mysidebar").navgoco({
caretHtml: '',
accordion: true,
openClass: 'active', // open
save: false, // leave false or nav highlighting doesn't work right
cookie: {
name: 'navgoco',
expires: false,
path: '/'
},
slide: {
duration: 400,
easing: 'swing'
}
});
$("#collapseAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', false);
});
$("#expandAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', true);
});
});
</script>
<ul id="mysidebar" class="nav">
<div class="siteTagline">Spoon</div>
<li><a href="#">Getting started</a>
<ul>
<li><a href="first_analysis_processor.html">Code Analysis</a></li>
</li>
<li><a href="architecture_test.html">Architecture Checking</a></li>
</li>
<li><a href="reflection.html">Runtime Reflection</a></li>
</li>
<li><a href="custom-pretty-printing.html">Custom Java Pretty-Printing</a></li>
</li>
<li><a href="processor.html">Processor for elements</a></li>
</li>
<li><a href="/mvnsites/spoon-core/apidocs" target="_blank">Javadoc</a></li>
</li>
<li><a href="spoon_javadoc.html">Javadoc Analysis</a></li>
</li>
<li><a href="faq.html">FAQ</a></li>
</li>
</ul>
</li>
<li><a href="#">Querying source code elements</a>
<ul>
<li><a href="filter.html">AST Traversing</a></li>
</li>
<li><a href="path.html">AST Paths and Roles</a></li>
</li>
<li><a href="matcher.html">Matcher</a></li>
</li>
<li><a href="pattern.html">Pattern</a></li>
</li>
</ul>
</li>
<li><a href="#">Code Transformation</a>
<ul>
<li><a href="first_transformation.html">Code Transformation</a></li>
</li>
<li><a href="examples.html">Transformation Examples</a></li>
</li>
<li><a href="processor_annotations.html">Transformation with annotations</a></li>
</li>
<li><a href="template_definition.html">Transformation with Templates</a></li>
</li>
<li><a href="spoon_smpl.html">Semantic patching</a></li>
</li>
<li><a href="pattern.html#generator">Code Generation</a></li>
</li>
<li><a href="testing_quickstart.html">Testing transformations</a></li>
</li>
</ul>
</li>
<li><a href="#">Usage</a>
<ul>
<li><a href="launcher.html">From Java</a></li>
</li>
<li><a href="command_line.html">Command Line</a></li>
</li>
<li><a href="maven.html">From Maven Plugin</a></li>
</li>
<li><a href="gradle.html">From Gradle Plugin</a></li>
</li>
</ul>
</li>
<li><a href="#">Spoon Meta model</a>
<ul>
<li><a href="structural_elements.html">Structural elements</a></li>
</li>
<li><a href="code_elements.html">Code elements</a></li>
</li>
<li><a href="references.html">References</a></li>
</li>
<li><a href="factories.html">Create elements with factories</a></li>
</li>
<li><a href="comments.html">Comments and Positions</a></li>
</li>
</ul>
</li>
</ul>
</div>
<!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above.-->
<script>$("li.active").parents('li').toggleClass("active");</script>
<!-- Content Column -->
<div class="col-md-9">
<div class="post-header">
<h1 class="post-title-main"> Spoon - Source Code Analysis and Transformation for Java </h1>
</div>
<div class="post-content">
<p><a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22fr.inria.gforge.spoon%22%20AND%20a%3A%22spoon-core%22"><img src="https://img.shields.io/maven-central/v/fr.inria.gforge.spoon/spoon-core.svg" alt="Maven Central" /></a>
<a href="https://github.com/INRIA/spoon/actions/workflows/tests.yml"><img src="https://github.com/INRIA/spoon/actions/workflows/tests.yml/badge.svg" alt="GHA tests Workflow Status" /></a>
<a href="https://coveralls.io/r/INRIA/spoon"><img src="https://coveralls.io/repos/INRIA/spoon/badge.svg" alt="Coverage Status" /></a>
<a href="https://sonarqube.ow2.org/dashboard?id=fr.inria.gforge.spoon%3Aspoon-core"><img src="https://sonarqube.ow2.org/api/project_badges/measure?project=fr.inria.gforge.spoon%3Aspoon-core&metric=sqale_rating" alt="Maintainability Rating" /></a>
<a href="https://github.com/jvm-repo-rebuild/reproducible-central#fr.inria.gforge.spoon:spoon-core"><img src="https://img.shields.io/badge/Reproducible_Builds-ok-success?labelColor=1e5b96" alt="Reproducible Builds" /></a></p>
<h1 id="spoon">Spoon</h1>
<p>Spoon is an open-source library to analyze, rewrite, transform, transpile Java source code. It parses source files to build a well-designed AST with powerful analysis and transformation API. It supports modern Java versions up to Java 20. Spoon is an official Inria open-source project, and member of the <a href="https://www.ow2.org/">OW2</a> open-source consortium.</p>
<h2 id="documentation">Documentation</h2>
<p>The latest official documentation is available at <a href="http://spoon.gforge.inria.fr/">http://spoon.gforge.inria.fr/</a>.</p>
<h3 id="academic-usage">Academic usage</h3>
<p>If you use Spoon for academic purposes, please cite: Renaud Pawlak, Martin Monperrus, Nicolas Petitprez, Carlos Noguera, Lionel Seinturier. “<a href="https://hal.archives-ouvertes.fr/hal-01078532/document">Spoon: A Library for Implementing Analyses and Transformations of Java Source Code</a>”. In Software: Practice and Experience, Wiley-Blackwell, 2015. Doi: 10.1002/spe.2346.</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>@article{pawlak:hal-01169705,
TITLE = "{Spoon: A Library for Implementing Analyses and Transformations of Java Source Code}",
AUTHOR = {Pawlak, Renaud and Monperrus, Martin and Petitprez, Nicolas and Noguera, Carlos and Seinturier, Lionel},
JOURNAL = "{Software: Practice and Experience}",
PUBLISHER = "{Wiley-Blackwell}",
PAGES = {1155-1179},
VOLUME = {46},
URL = {https://hal.archives-ouvertes.fr/hal-01078532/document},
YEAR = {2015},
doi = {10.1002/spe.2346},
}
</code></pre></div></div>
<h3 id="professional-support">Professional support</h3>
<p>If you need professional support on Spoon (development, training, extension), you are welcome to post a comment on https://github.com/INRIA/spoon/issues/3251</p>
<h2 id="getting-started-in-2-seconds">Getting started in 2 seconds</h2>
<blockquote>
<p><strong>Java version:</strong> Spoon version 10 and up requires Java 11 or later. Spoon 9.1.0 is the final Spoon release compatible
with Java 8, and we do not plan to backport any bug fixes or features to Spoon 9. Note that Spoon can of course still
consume source code for older versions of Java, but it needs JDK 11+ to run.</p>
</blockquote>
<p>Get latest stable version with Maven, see <a href="https://search.maven.org/artifact/fr.inria.gforge.spoon/spoon-core">https://search.maven.org/artifact/fr.inria.gforge.spoon/spoon-core</a></p>
<p>And start using it:</p>
<div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nc">CtClass</span> <span class="n">l</span> <span class="o">=</span> <span class="nc">Launcher</span><span class="o">.</span><span class="na">parseClass</span><span class="o">(</span><span class="s">"class A { void m() { System.out.println(\"yeah\");} }"</span><span class="o">);</span>
</code></pre></div></div>
<p>Documentation:</p>
<ul>
<li>Reference documentation: <a href="http://spoon.gforge.inria.fr/">http://spoon.gforge.inria.fr/</a> (contains the content of the <a href="https://github.com/INRIA/spoon/tree/master/doc">doc folder</a>)</li>
<li>Code examples: <a href="https://github.com/SpoonLabs/spoon-examples">https://github.com/SpoonLabs/spoon-examples</a></li>
<li>Videos: <a href="https://www.youtube.com/watch?v=ZZzdVTIu-OY">Spoon: Getting Started - Simon Urli @ OW2Con’18 (Paris)</a>, <a href="https://www.youtube.com/watch?v=JcCIbjnkfD4">Generate Test Assertion with Spoon - Benjamin Danglot @ OW2Con’17 (Paris)</a></li>
</ul>
<h2 id="contributing-in-2-seconds">Contributing in 2 seconds</h2>
<p>Create your first pull request to improve the documentation, see <a href="https://github.com/INRIA/spoon/tree/master/doc">doc</a>! Proceed with your first bug fix! The community is open-minded, respectful and patient. All external contributions are welcome.</p>
<h2 id="design-philosophy">Design Philosophy</h2>
<p>R1) The Spoon metamodel is as close as possible to the language concepts.</p>
<p>R2) The Spoon model of a program is complete and sound.</p>
<p>R3) The text version of a Spoon model is well-formed and semantically equivalent to the original program.</p>
<p>R4) The analysis and transformation API is intuitive and regular.</p>
<p>R5) Transformation operators are designed to warn as fast as possible about invalid programs. This is done either with static type checking or with dynamic checks when the operators are used.</p>
<p>R6) When feasible, the text version of a Spoon model is close to the original one.</p>
<h3 id="compiling">Compiling</h3>
<p>To compile Spoon, you need a Java Development Kit (JDK) and Maven:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>git clone https://github.com/INRIA/spoon
cd spoon
mvn compile
</code></pre></div></div>
<p>To run the tests:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mvn test
</code></pre></div></div>
<h3 id="download">Download</h3>
<p>Latest version: <a href="https://search.maven.org/remote_content?g=fr.inria.gforge.spoon&a=spoon-core&v=LATEST&c=jar-with-dependencies">https://search.maven.org/remote_content?g=fr.inria.gforge.spoon&a=spoon-core&v=LATEST&c=jar-with-dependencies</a> - <a href="http://spoon.gforge.inria.fr/mvnsites/spoon-core/apidocs/index.html">Javadoc</a></p>
<p>Maven:</p>
<div class="language-xml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt"><dependency></span>
<span class="nt"><groupId></span>fr.inria.gforge.spoon<span class="nt"></groupId></span>
<span class="nt"><artifactId></span>spoon-core<span class="nt"></artifactId></span>
<span class="c"><!-- See rendered release value at http://spoon.gforge.inria.fr/ --></span>
<span class="nt"><version></version></span>
<span class="nt"></dependency></span>
</code></pre></div></div>
<h2 id="releases">Releases</h2>
<!-- .* Marker comment. -->
<ul>
<li>August 31 2023, Spoon 10.4.1 <a href="https://github.com/INRIA/spoon/releases/tag/v10.4.1">(changelog)</a></li>
<li>Jul 6 2023, Spoon 10.4.0 <a href="https://github.com/INRIA/spoon/releases/tag/v10.4.0">(changelog)</a></li>
<li>March 13 2023, Spoon 10.3.0 <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-10.3.0">(changelog)</a></li>
<li>Oct 2022, Spoon 10.2.0 <a href="https://github.com/INRIA/spoon/pull/4946">(changelog)</a></li>
<li>April 2022, Spoon 10.1.0 <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-10.1.0">(changelog)</a></li>
<li>October 2021, Spoon 10.0.0 <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-10.0.0">(changelog)</a></li>
<li>August 2021: Spoon 9.1.0 <a href="https://github.com/INRIA/spoon/pull/4104">(changelog)</a></li>
<li>March 2021: Spoon 9.0.0 <a href="https://github.com/INRIA/spoon/issues/3845">(changelog)</a></li>
<li>October 2020: Spoon 8.3.0 <a href="https://github.com/INRIA/spoon/pull/3647">(changelog)</a></li>
<li>July 2020: Spoon 8.2.0 <a href="https://github.com/INRIA/spoon/pull/3501">(changelog)</a></li>
<li>March 2020: Spoon 8.1.0 <a href="https://github.com/INRIA/spoon/pull/3310">(changelog)</a></li>
<li>November 2019, Spoon 8.0.0 <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-8.0.0">(changelog)</a></li>
<li>July 2019: Spoon 7.5.0 is released <a href="https://github.com/INRIA/spoon/pull/3057">(changelog)</a></li>
<li>May 2019: Spoon 7.4.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-7.4.0">(changelog)</a></li>
<li>February 10, 2019: Spoon 7.3.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-7.3.0">(changelog)</a></li>
<li>December 4, 2018: Spoon 7.2.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-7.2.0">(changelog)</a></li>
<li>October 10, 2018: Spoon 7.1.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-7.1.0">(changelog)</a></li>
<li>July 4, 2018: Spoon 7.0.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-7.0.0">(changelog)</a></li>
<li>March 8, 2018: Spoon 6.2.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-6.2.0">(changelog)</a></li>
<li>December 20, 2017: Spoon 6.1.0 is released, merry christmas! :christmas_tree: <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-6.1.0">(changelog)</a></li>
<li>November 17, 2017: Spoon 6.0.0 is released! Check the <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-6.0.0">(changelog)</a> as there are few non backward-compatible changes :warning:</li>
<li>September 6, 2017: Spoon 5.9.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.9.0">(changelog)</a> <em>back-to-work</em> release!</li>
<li>July 11, 2017: Spoon 5.8.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.8.0">(changelog)</a> Summer release :beer: To be preferred wrt the previous one: fix lot of bugs.</li>
<li>June 01, 2017: Spoon 5.7.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.7.0">(changelog)</a></li>
<li>March 16, 2017: Spoon 5.6.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.6.0">(changelog)</a> Spring release :-)</li>
<li>January 11, 2017: Spoon 5.5.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.5.0">(changelog)</a>. Happy new year!</li>
<li>October 27, 2016: Spoon 5.4.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.4.0">(changelog)</a>.</li>
<li>September 19, 2016: Spoon 5.3.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.3.0">(changelog)</a>.</li>
<li>June 30, 2016: Spoon 5.2.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.2.0">(changelog)</a>.</li>
<li>June 22, 2016: Spoon 5.1.1 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.1.1">(changelog)</a>.</li>
<li>March 21, 2016: Spoon 5.1.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.1.0">(changelog)</a>.</li>
<li>February 12, 2016: Spoon 5.0.2 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.0.2">(changelog)</a>.</li>
<li>February 3, 2016: Spoon 5.0.1 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.0.1">(changelog)</a>.</li>
<li>January 25, 2016: Spoon 5.0.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.0.0">(changelog)</a>.</li>
<li>November 18, 2015: Spoon 4.4.1 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-5.5.0">(changelog)</a>.</li>
<li>November 16, 2015: Spoon 4.4.0 is released <a href="https://github.com/INRIA/spoon/releases/tag/spoon-core-4.4.0">(changelog)</a>.</li>
<li>September 22, 2015: Spoon 4.3.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2015-September/001803.html">(changelog)</a>.</li>
<li>June 15, 2015: Spoon 4.2.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2015-June/001781.html">(changelog)</a>.</li>
<li>May 7, 2015: Spoon 4.1.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2015-May/001774.html">(changelog)</a>.</li>
<li>April 8, 2015: Spoon 4.0.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2015-April/001769.html">(changelog)</a>.</li>
<li>February 11, 2015: Spoon 3.1 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2015-February/001741.html">(changelog)</a>.</li>
<li>December 9, 2014: Spoon 3.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2014-December/001721.html">(changelog)</a>.</li>
<li>November 12, 2014: Spoon 2.4 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2014-November/001710.html">(changelog)</a>.</li>
<li>October 9, 2014: Spoon 2.3.1 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2014-October/001688.html">(changelog)</a>.</li>
<li>September 12, 2014: Spoon 2.1 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2014-September/001683.html">(changelog)</a>.</li>
<li>April 2, 2014: Spoon 2.0 is released <a href="https://lists.gforge.inria.fr/pipermail/spoon-discuss/2014-March/001639.html">(changelog)</a>.</li>
<li>September 30, 2013: Spoon 1.6 is released.</li>
<li>April 12, 2012: Spoon 1.5 is released.</li>
</ul>
<h2 id="license">License</h2>
<p>Spoon is Free and Open Source, double-licensed under the (<a href="https://cecill.info/licences.en.html">CeCILL-C license</a> - French equivalent to LGPL) and the MIT license.</p>
<h2 id="jprofiler">JProfiler</h2>
<p>Spoon is developed with the help of JProfiler, a Java profiler by ej-technologies GmbH. JProfiler supports the development of Spoon by providing its full-featured Java Profiler for free. We thank ej-technologies GmbH for this support.</p>
<p><a href="https://www.ej-technologies.com/products/jprofiler/overview.html"><img src="https://www.ej-technologies.com/images/product_banners/jprofiler_large.png" alt="JProfiler" /></a></p>
<h2 id="github-contributors">Github Contributors</h2>
<p>This list is generated by <code class="language-plaintext highlighter-rouge">chore/generate-contributor-list.py</code>. If you’re not listed or you’d like to have your full name, please post to https://github.com/INRIA/spoon/issues/3909.</p>
<ul>
<li>adamjryan</li>
<li>Alcides Fonseca</li>
<li>Alexander Shopov</li>
<li>Aman Sharma</li>
<li>andrewbwogi</li>
<li>André Cruz</li>
<li>André Silva</li>
<li>Antoine Mottier</li>
<li>Anton Lyxell</li>
<li>argius</li>
<li>Arnaud Blouin</li>
<li>arsenkhy</li>
<li>Artamm</li>
<li>Artur Bosch</li>
<li>aryan</li>
<li>Ashutosh Kumar Verma</li>
<li>aveuiller</li>
<li>Axel Howind</li>
<li>Benjamin DANGLOT</li>
<li>Benoit Cornu</li>
<li>Carlos Noguera</li>
<li>Ceki Gülcü</li>
<li>Charm</li>
<li>ChrisSquare</li>
<li>Christophe Dufour</li>
<li>Christopher Stokes</li>
<li>Clemens Bartz</li>
<li>Clément Fournier</li>
<li>César Soto Valero</li>
<li>Darius Sas</li>
<li>David Bernard</li>
<li>Didier Donsez</li>
<li>Diorcet Yann</li>
<li>dufaux</li>
<li>dwayneb</li>
<li>dya-tel</li>
<li>Eddie T</li>
<li>Egor Bredikhin</li>
<li>Fabien DUMINY</li>
<li>Fan Long</li>
<li>fangzhen</li>
<li>fav</li>
<li>Favio DeMarco</li>
<li>Fernanda Madeiral</li>
<li>Filip Krakowski</li>
<li>Gabriel Chaperon Burgos</li>
<li>gibahjoe</li>
<li>GluckZhang</li>
<li>Gregor Zeitlinger</li>
<li>gtoison</li>
<li>Guillaume Toison</li>
<li>Gérard Paligot</li>
<li>Hannes Greule</li>
<li>Haris Adzemovic</li>
<li>HectorSM</li>
<li>Henry Chu</li>
<li>Horia Constantin</li>
<li>I-Al-Istannen</li>
<li>intrigus-lgtm</li>
<li>jakobbraun</li>
<li>Jan Galinski</li>
<li>jon</li>
<li>Kai Luo</li>
<li>Lakshya A Agrawal</li>
<li>leventov</li>
<li>Lionel Seinturier</li>
<li>lodart</li>
<li>Lukas Krejci</li>
<li>Luke Merrick</li>
<li>Marcel Manseer</li>
<li>Marcel Steinbeck</li>
<li>Martin Monperrus</li>
<li>MartinWitt</li>
<li>Matias Martinez</li>
<li>Maxim Stefanov</li>
<li>Maxime CLEMENT</li>
<li>Mehdi Kaytoue</li>
<li>Michael Täge</li>
<li>Mickael Istria</li>
<li>Miguel Sozinho Ramalho</li>
<li>Mikael Forsberg</li>
<li>Muhammet Ali AKBAY</li>
<li>Nicolas Harrand</li>
<li>Nicolas Pessemier</li>
<li>Nicolas Petitprez</li>
<li>Noah Santschi-Cooney</li>
<li>Olivier Barais</li>
<li>Ondřej Šebek</li>
<li>Pavel Vojtechovsky</li>
<li>peroksid90</li>
<li>Phillip Schichtel</li>
<li>Quentin LE DILAVREC</li>
<li>raymogg</li>
<li>Renaud Pawlak</li>
<li>Reza Gharibi</li>
<li>Rhys Compton</li>
<li>Rick Kellogg</li>
<li>Rijnard van Tonder</li>
<li>Rohitesh Kumar Jain</li>
<li>Roman Leventov</li>
<li>santos-samuel</li>
<li>scootafew</li>
<li>Scott Dickerson</li>
<li>Scott Pinwell</li>
<li>Sebastian Lamelas Marcote</li>
<li>Sergey Fedorov</li>
<li>Shantanu</li>
<li>Simon Larsén</li>
<li>Simon Urli</li>
<li>Spencer Williams</li>
<li>srlm</li>
<li>ST0NEWALL</li>
<li>Stefan Wolf</li>
<li>Sébastien Bertrand</li>
<li>Thimo Seitz</li>
<li>Thomas Durieux</li>
<li>tiagodrcarvalho</li>
<li>Tomasz Zieliński</li>
<li>Urs Keller</li>
<li>Viktor</li>
<li>Vincenzo Musco</li>
<li>Wolfgang Schmiesing</li>
<li>Wouter Smeenk</li>
<li>Wreulicke</li>
<li>Yann Diorcet</li>
<li>Zhang Xindong</li>
<li>Дмитрий</li>
</ul>
</div>
<hr class="shaded"/>
<footer>
<div class="row">
<div class="col-lg-12 footer">
<a href="https://github.com/INRIA/spoon/issues/new">Contact / Feedback / Question / Bug Report</a><br />
</div>
</div>
</footer>
</div><!-- /.row -->
</div> <!-- /.container -->
</body>
<!-- the google_analytics_id gets auto inserted from the config file -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-24273081-1', 'auto');
ga('send', 'pageview');
</script>
</html>