zbookstatelistener.java

来自「用Java写的报表.功能如下: 0.内建网络打印,网络预览功能! 1.文件操作。」· Java 代码 · 共 107 行

JAVA
107
字号
/*
 * put your module comment here
 * formatted with JxBeauty (c) johann.langhofer@nextra.at
 */


package  ezcell;

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


/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2001</p>
 * <p>Company: </p>
 * @author unascribed
 * @version 1.0
 */
public interface ZBookStateListener {

    /**
     * put your documentation comment here
     * @param e
     */
    void bookChanged (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void activeChanged (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     * @param sheet
     */
    void sheetAdded (ChangeEvent e, ZSheetState sheet);



    /**
     * put your documentation comment here
     * @param e
     * @param sheet
     */
    void sheetRemoved (ChangeEvent e, ZSheetState sheet);



    /**
     * put your documentation comment here
     * @param e
     */
    void footerAdded (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void headerAdded (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void footerRemoved (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void headerRemoved (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void pageFormatChanged (ChangeEvent e);



    /**
     * put your documentation comment here
     * @param e
     */
    void activeCellChanged (ChangeEvent e);
}



⌨️ 快捷键说明

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