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

📄 xbookmarkpane.java

📁 java写的浏览器
💻 JAVA
字号:
/****************************************************************
*              XBrowser  -  eXtended web Browser                *
*                                                               *
*           Copyright (c) 2000-2001  Armond Avanes              *
*     Refer to ReadMe & License files for more information      *
*                                                               *
*                                                               *
*                      By: Armond Avanes                        *
*       Armond555@yahoo.com     &    Armond333@yahoo.com        *
*                http://xbrowser.sourceforge.net/               *
*****************************************************************/
package xbrowser.plugin.defaults.bookmarkpane;

import java.awt.*;
import javax.swing.*;

import xbrowser.plugin.*;
import xbrowser.options.*;

public class XBookmarkPane implements XGUIPlugin
{
	public void init()
	{
	}

	public void start()
	{
	}

	public void stop()
	{
	}

	public void destroy()
	{
	}

	public void setContext(XPluginContext context)
	{
		this.context = context;
		context.getResourceManager().initResourceBundle("XBookmarkPane");
	}

	public Component getComponent()
	{
		return( new JScrollPane(new XBookmarkTree(context)) );
	}

	public String getTitle()
	{
		return context.getResourceManager().getProperty(this, "Title");
	}

	public XOptionPage getOptionPage()
	{
		return null;
	}

// Attributes:
	private XPluginContext context;
}

⌨️ 快捷键说明

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