⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xdom.java

📁 XBrowser是一个完全免费并且开源的Web浏览器
💻 JAVA
字号:
/*****************************************************************              XBrowser  -  eXtended web Browser                **                                                               **           Copyright (c) 2000-2001  Armond Avanes              **     Refer to ReadMe & License files for more information      **                                                               **                                                               **                 By: Uladzimir V. Kavalchuk                    **               Uladzimir_Kavalchuk@ep.minsk.by                 **               http://xbrowser.sourceforge.net/                ******************************************************************/package xbrowser.renderer.custom.js;import org.mozilla.javascript.ScriptableObject;/** Collects DOM objects and properties when parsing to use in other parts. */public interface XDOM {    /** Object must be added to <code>all</code> collection. */	final static int DOCUMENT = 0;    /** Object must be added to <code>images</code> collection. */	final static int IMAGES = 1;    /** Object must be added to <code>anchors</code> collection. */	final static int ANCHORS = 2;    /** Object must be added to <code>forms</code> collection. */	final static int FORMS = 3;    /** Object must be added to <code>links</code> collection. */	final static int LINKS = 4;	/** Add object of some type to specified collection of Document. */	void addObject( ScriptableObject object, String name, int destCollection);	/** Set some property of Document. */	void setDocProperty( String name, String value);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -