插件开发工具库,推荐依赖该工具库。
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.

26 lines
736 B

package com.fanruan.api.design.ui.editor;
import com.fr.design.editor.editor.Editor;
/**
* @author richie
* @version 10.0
* Created by richie on 2019-08-27
* 多指选择器
* com.fr.design.editor.editor.Editor是一个可靠的API类
*/
public class ValueEditorPane extends com.fr.design.editor.ValueEditorPane {
public ValueEditorPane(Editor[] editors) {
super(editors);
}
public ValueEditorPane(Editor[] editors, String popupName, String textEditorValue) {
super(editors, popupName, textEditorValue);
}
public ValueEditorPane(Editor[] editors, String popupName, String textEditorValue, int centerPaneWidth) {
super(editors, popupName, textEditorValue, centerPaneWidth);
}
}