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.
29 lines
649 B
29 lines
649 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.formula.UIFormula; |
|
import com.fr.stable.fun.mark.Immutable; |
|
|
|
/** |
|
* @author richie |
|
* @date 2015-04-17 |
|
* @since 8.0 |
|
* 公式编辑器界面处理接口 |
|
*/ |
|
public interface UIFormulaProcessor extends Immutable{ |
|
String MARK_STRING = "UIFormulaProcessor"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
|
|
/** |
|
* 普通的公式编辑器界面类 |
|
* @return 公式编辑器界面类 |
|
*/ |
|
UIFormula appearanceFormula(); |
|
|
|
/** |
|
* 当需要显示“保留公式”项时的公式编辑器界面类 |
|
* @return 公式编辑器界面类 |
|
*/ |
|
UIFormula appearanceWhenReserveFormula(); |
|
} |