Java: Inline models as data expected output as comments in the java files and add a test.

This commit is contained in:
Michael Nebel
2024-05-06 11:01:23 +02:00
parent 6815bcaa80
commit 7cb8a6c52f
14 changed files with 439 additions and 393 deletions

View File

@@ -2,14 +2,14 @@ package p;
public final class FluentAPI {
public FluentAPI returnsThis(String input) {
return this;
}
// MaD=p;FluentAPI;false;returnsThis;(String);;Argument[this];ReturnValue;value;df-generated
public FluentAPI returnsThis(String input) {
return this;
}
public class Inner {
public FluentAPI notThis(String input) {
return FluentAPI.this;
}
public class Inner {
public FluentAPI notThis(String input) {
return FluentAPI.this;
}
}
}
}