GfmlObj.java 795 B

123456789101112131415161718192021222324252627
  1. /*
  2. XOWA: the XOWA Offline Wiki Application
  3. Copyright (C) 2012-2017 gnosygnu@gmail.com
  4. XOWA is licensed under the terms of the General Public License (GPL) Version 3,
  5. or alternatively under the terms of the Apache License Version 2.0.
  6. You may use XOWA according to either of these licenses as is most appropriate
  7. for your project on a case-by-case basis.
  8. The terms of each license can be found in the source code repository:
  9. GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
  10. Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
  11. */
  12. package gplx.gfml; import gplx.*;
  13. public interface GfmlObj {
  14. int ObjType();
  15. }
  16. class GfmlObj_ {
  17. public static final int
  18. Type_tkn = 1
  19. , Type_atr = 2
  20. , Type_nde = 3
  21. , Type_prg = 4
  22. ;
  23. }