📄 iformulatelistener.java
字号:
/***********************************************************************
* Module: IFormulateListener.java
* Author: juny
* Created: 2006年7月14日 13:49:46
* Purpose: Defines the Interface IFormulateListener
***********************************************************************/
package net.excel.report.base;
/**
* 计算类字段的接口,实现该接口的字段对象都可以执行表达式计算任务监听。
* @author juny
*/
public interface IFormulateListener
{
/**
* 计算类字段的接口,实现该接口的字段对象都可以执行表达式计算任务监听。
* @param sourceName
* @param value
* @param col
* @param row
*/
public abstract void setValue(String sourceName, Object value, int col, int row);
/**
* 重设监听器
*/
public abstract void reset();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -