Volker Birk 10 years ago
parent
commit
6c3866f71e
  1. 7
      src/gen_java_Message.ysl2

7
src/gen_java_Message.ysl2

@ -72,9 +72,12 @@ tstylesheet {
`` apply "*", mode=value `` apply "*", mode=value
; ;
public final int value; static class Management {
public static final HashMap<Integer, «$jname»> tag = public static final HashMap<Integer, «$jname»> tag =
new HashMap<Integer, «$jname»>(); new HashMap<Integer, «$jname»>();
}
public final int value;
«$jname»(int value) { «$jname»(int value) {
this.value = value; this.value = value;
@ -82,7 +85,7 @@ tstylesheet {
} }
private void fill(int value) { private void fill(int value) {
tag.put(value, this); Management.tag.put(value, this);
} }
} }

Loading…
Cancel
Save