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,17 @@
package p;
enum SomeEnum {
FOO("input");
private String input;
private SomeEnum(String input) {
this.input = input;
}
public String getValue() {
return input;
}
}