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.
30 lines
875 B
30 lines
875 B
package com.fr.design.parameter; |
|
|
|
import com.fr.design.editor.ValueEditorPane; |
|
import com.fr.stable.ParameterProvider; |
|
|
|
/** |
|
* 与ParameterInputPane区别在于 输入参数不会触发模板修改事件 |
|
* |
|
* 适用于参数不需要存储在模板中的场景 |
|
* |
|
* @author hades |
|
* @version 11.0 |
|
* Created by hades on 2022/5/13 |
|
*/ |
|
public class ParameterInputNoneListenerPane extends ParameterInputPane { |
|
|
|
public ParameterInputNoneListenerPane(ParameterProvider[] parameters) { |
|
super(parameters); |
|
} |
|
|
|
public ParameterInputNoneListenerPane(ParameterProvider[] parameters, boolean allowBlank) { |
|
super(parameters, allowBlank); |
|
} |
|
|
|
@Override |
|
protected void initTextListener(ValueEditorPane textF) { |
|
// 这边输入参数 不用联动模板变化激活保存按钮 相关参数并不存储在模板 |
|
// do nothing |
|
} |
|
}
|
|
|