forked from fanruan/finekit
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.
22 lines
752 B
22 lines
752 B
package com.fanruan.api.design.ui.condition; |
|
|
|
import com.fr.design.condition.ConditionAttributesPane; |
|
|
|
public abstract class ConditionAttrSingleConditionPane<T> extends com.fr.design.condition.ConditionAttrSingleConditionPane<T> { |
|
/** |
|
* 调用父类构造函数进行初始化 |
|
* @param conditionAttributesPane |
|
*/ |
|
public ConditionAttrSingleConditionPane(ConditionAttributesPane conditionAttributesPane){ |
|
super(conditionAttributesPane); |
|
} |
|
|
|
/** |
|
* 调用父类构造函数进行初始化 |
|
* @param conditionAttributesPane |
|
* @param var |
|
*/ |
|
public ConditionAttrSingleConditionPane(ConditionAttributesPane conditionAttributesPane, boolean var){ |
|
super(conditionAttributesPane, var); |
|
} |
|
}
|
|
|