Add support for qualifier flow

This commit is contained in:
Benjamin Muskalla
2021-09-24 15:30:35 +02:00
parent 32ef40c77b
commit ec772fb6b2
4 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1 @@
| p;FluentAPI;false;returnsThis;(String);;Argument[-1];ReturnValue;value; |

View File

@@ -0,0 +1,9 @@
package p;
public final class FluentAPI {
public FluentAPI returnsThis(String input) {
return this;
}
}