sidepanel.java

来自「Java生成PDF Java生成PDF Java生成PDF」· Java 代码 · 共 42 行

JAVA
42
字号
// $Id: SidePanel.java,v 1.5 2007/05/21 15:02:59 mike Exp $package org.faceless.pdf2.viewer2;import org.faceless.pdf2.PDF;/** * Represents a side-panel in a {@link DocumentPanel}. Typical uses are to * display Thumbnails, Document outlines and so on. * <p><i>This code is copyright the Big Faceless Organization. You're welcome to use, modify and distribute it in any form in your own projects, provided those projects continue to make use of the Big Faceless PDF library.</i></p> * @see SidePanelFactory * @since 2.8 */public interface SidePanel{    /**     * Set the {@link DocumentPanel} this SidePanel is a member of. This method     * is called every time the DocumentPanel has it's document changed - the     * SidePanel should be reinitialized in this call. If the SidePanel     * is removed, this method will be called with <code>null</code> as it's     * argument.     */    public void setDocumentPanel(DocumentPanel panel);        /**     * Called when the panel is made visible     */    public void panelVisible();    /**     * Called when the panel is made hidden     */    public void panelHidden();    /**     * Called when the {@link DocumentPanel#redraw} method is called, this     * method should rebuild the specified object if appropriate for this     * panel.     */    public void redraw(Object o);}

⌨️ 快捷键说明

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