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.
13 lines
532 B
13 lines
532 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> { |
|
public ConditionAttrSingleConditionPane(ConditionAttributesPane conditionAttributesPane){ |
|
super(conditionAttributesPane); |
|
} |
|
|
|
public ConditionAttrSingleConditionPane(ConditionAttributesPane conditionAttributesPane, boolean var){ |
|
super(conditionAttributesPane, var); |
|
} |
|
}
|
|
|