mirror of
https://github.com/gnosygnu/xowa.git
synced 2025-06-13 12:54:14 +00:00
35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
|
/*
|
||
|
XOWA: the XOWA Offline Wiki Application
|
||
|
Copyright (C) 2012-2017 gnosygnu@gmail.com
|
||
|
|
||
|
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
|
||
|
or alternatively under the terms of the Apache License Version 2.0.
|
||
|
|
||
|
You may use XOWA according to either of these licenses as is most appropriate
|
||
|
for your project on a case-by-case basis.
|
||
|
|
||
|
The terms of each license can be found in the source code repository:
|
||
|
|
||
|
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
|
||
|
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
||
|
*/
|
||
|
package gplx.xowa; import gplx.*;
|
||
|
import gplx.xowa.langs.*;
|
||
|
import gplx.xowa.wikis.pages.*; import gplx.xowa.wikis.pages.lnkis.*; import gplx.xowa.wikis.pages.dbs.*; import gplx.xowa.wikis.pages.redirects.*; import gplx.xowa.wikis.pages.hdumps.*; import gplx.xowa.wikis.pages.htmls.*; import gplx.xowa.wikis.pages.wtxts.*;
|
||
|
public interface Xoa_page {
|
||
|
Xow_wiki Wiki();
|
||
|
Guid_adp Page_guid();
|
||
|
Xoa_url Url(); byte[] Url_bry_safe();
|
||
|
Xoa_ttl Ttl();
|
||
|
Xopg_db_data Db();
|
||
|
Xopg_redirect_mgr Redirect_trail();
|
||
|
Xopg_html_data Html_data();
|
||
|
Xopg_hdump_data Hdump_mgr();
|
||
|
Xopg_wtxt_data Wtxt();
|
||
|
Xol_lang_itm Lang();
|
||
|
|
||
|
Xoa_page__commons_mgr Commons_mgr();
|
||
|
boolean Xtn__timeline_exists();
|
||
|
boolean Xtn__gallery_exists();
|
||
|
}
|