帆软报表设计器源代码。
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.
 
 
 
 

28 lines
699 B

package com.fr.design.fun;
import com.fr.design.condition.ConditionAttrSingleConditionPane;
import com.fr.design.condition.ConditionAttributesPane;
import com.fr.stable.fun.Level;
/**
* 条件属性界面设计接口
*/
public interface HighlightProvider extends Level{
String MARK_STRING = "HighlightProvider";
int CURRENT_LEVEL = 1;
/**
* 条件属性的实现类
* @return 实现类
*/
Class<?> classForHighlightAction();
/**
* 条件属性的界面
* @param conditionAttributesPane 条件界面
* @return 设置界面
*/
ConditionAttrSingleConditionPane appearanceForCondition(ConditionAttributesPane conditionAttributesPane);
}