Gfo_log.java 871 B

12345678910111213141516171819202122232425
  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;
  13. public interface Gfo_log {
  14. List_adp Itms();
  15. Gfo_log Itms_(List_adp v);
  16. void Warn(String msg, Object... args);
  17. void Note(String msg, Object... args);
  18. void Info(String msg, Object... args);
  19. void Prog(String msg, Object... args);
  20. void Flush();
  21. }