File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,5 +37,5 @@ FJMUModelUpdater new
3737You can build the ` output.json ` with VerveineJ with the following command.
3838
3939``` st
40- docker run -v "/path/to/FamixJavaModelUpdater/tests:/src" ghcr.io/evref-bl/verveinej:v3.0.7 -format json -o output.json -alllocals -anchor assoc .
40+ docker run -v "/path/to/FamixJavaModelUpdater/tests:/src" ghcr.io/evref-bl/verveinej:v3.0.13 -format json -o output.json -alllocals -anchor assoc .
4141```
Original file line number Diff line number Diff line change 33import fr .badetitou .external .ExternalFamixJavaClass ;
44import fr .badetitou .exception .MyException ;
55import fr .badetitou .interfaces .MyInterface ;
6+ import fr .badetitou .parametrized .MyParametrizable ;
67import fr .badetitou .association .mysuper .MySuperClass ;
78
89public class MyClass extends MySuperClass implements MyInterface {
Original file line number Diff line number Diff line change 11package fr .badetitou .association .mysuper ;
22
33
4- public class MySuperClass () {
4+ public class MySuperClass {
55
6- void aSuperMethod () {
6+ protected void aSuperMethod () {
77
88 }
99
Original file line number Diff line number Diff line change 55public class ExternalFamixJavaClass {
66
77 public MyClass externalFamixJavaMethod () {
8-
8+ return new MyClass ();
99 }
1010}
Original file line number Diff line number Diff line change 44
55public class MyParametrizable <E extends Object > {
66
7- E myMethod () {
8- return null
7+ public E myMethod () {
8+ return null ;
99 }
1010
1111}
You can’t perform that action at this time.
0 commit comments