Java: Move dataflow based model generation testcases to a subfolder.

This commit is contained in:
Michael Nebel
2022-09-29 16:05:39 +02:00
parent 0cab131c51
commit 207191f987
24 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package p;
public final class ImmutablePojo {
private final String value;
private final long x;
public ImmutablePojo(String value, int x) {
this.value = value;
this.x = x;
}
public String getValue() {
return value;
}
public long getX() {
return x;
}
public String or(String defaultValue) {
return value != null ? value : defaultValue;
}
}