1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Mw_parse: Add magicWord classes

This commit is contained in:
gnosygnu
2017-02-05 13:59:30 -05:00
parent 352238a9c5
commit 8011f9e979
12 changed files with 607 additions and 81 deletions

View File

@@ -20,5 +20,5 @@ public class Xol_kwd_itm {// NOTE: keeping as separate class b/c may include fmt
public Xol_kwd_itm(byte[] val) {this.val = val;}
public byte[] Val() {return val;} private byte[] val;
public void Val_(byte[] v) {val = v;} // should only be called by lang
public static final Xol_kwd_itm[] Ary_empty = new Xol_kwd_itm[0];
public static final Xol_kwd_itm[] Ary_empty = new Xol_kwd_itm[0];
}