zsheetstateadapter.java
来自「用Java写的报表.功能如下: 0.内建网络打印,网络预览功能! 1.文件操作。」· Java 代码 · 共 107 行
JAVA
107 行
/*
* Copyright 2002 EZCell , Inc. All rights reserved.
* Version 1.0.
* Author W.John
*/
package ezcell;
import java.awt.Point;
/**
* put your documentation comment here
*/
class ZSheetStateAdapter implements ZSheetStateListener {
/**
* put your documentation comment here
* @param shape
*/
public void animationStarted(ZShape shape) {
}
/**
* put your documentation comment here
* @param shape
*/
public void animationStopped(ZShape shape) {
}
/**
* put your documentation comment here
* @param modal
*/
public void cursorChanged(ZSheetState modal) {
}
/**
* put your documentation comment here
* @param editor
*/
public void editorAdded(ZEditor editor) {
}
/**
* put your documentation comment here
* @param editor
*/
public void editorKilled(ZEditor editor) {
}
/**
* put your documentation comment here
* @param modal
*/
public void focusGained(ZSheetState modal) {
}
/**
* put your documentation comment here
* @param shape
*/
public void shapeAdded(ZShape shape) {
}
/**
* put your documentation comment here
* @param shape
*/
public void shapeKilled(ZShape shape) {
}
/**
* put your documentation comment here
* @param shape
* @param to
*/
public void shapeMoving(ZShape shape, Point to) {
}
/**
* put your documentation comment here
* @param shape
* @param to
*/
public void shapeMoving(ZShape shape, ZRect to) {
}
/**
* put your documentation comment here
* @param modal
*/
public void sheetPropertyChanged(ZSheetState modal) {
}
/**
* put your documentation comment here
* @param modal
*/
public void uiChanged(ZSheetState modal) {
}
/**
* put your documentation comment here
* @param modal
*/
public void uiStateChanged(ZSheetState modal) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?