增强公式编辑器,能让公式支持脚本和实时计算。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
545 B

7 years ago
package com.fr.solution.plugin.design.formula.ui.type;
import com.fr.solution.plugin.design.formula.ui.evt.OperateListener;
import com.fr.stable.ParameterProvider;
import com.fr.stable.script.CalculatorProvider;
7 years ago
public interface CommonEvent {
void onDoubleClick(String currentLineContent);
void onSingleClick();
void applyText(String text);
void checkContentValid();
void onSearch();
void setOperateListener(OperateListener listener);
7 years ago
ParameterProvider[] analyze4Parameters(CalculatorProvider calculator);
7 years ago
}