forked from fanruan/design
lucian
4 years ago
5 changed files with 58 additions and 36 deletions
@ -1,19 +0,0 @@ |
|||||||
package com.fr.design.fun; |
|
||||||
|
|
||||||
import com.fr.stable.fun.mark.Selectable; |
|
||||||
|
|
||||||
/** |
|
||||||
* 插件不匹配时设计器提示框的“立即处理”事件 |
|
||||||
* @author Lucian.Chen |
|
||||||
* @version 10.0 |
|
||||||
* Created by Lucian.Chen on 2021/2/20 |
|
||||||
*/ |
|
||||||
public interface PluginErrorRemindHandleProvider extends Selectable { |
|
||||||
|
|
||||||
String MARK_STRING = "PluginErrorRemindHandleProvider"; |
|
||||||
|
|
||||||
int CURRENT_LEVEL = 1; |
|
||||||
|
|
||||||
// 打开插件管理
|
|
||||||
void openPluginManager(); |
|
||||||
} |
|
@ -0,0 +1,20 @@ |
|||||||
|
package com.fr.design.fun; |
||||||
|
|
||||||
|
import com.fr.design.actions.UpdateAction; |
||||||
|
import com.fr.stable.fun.mark.Selectable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 替换插件管理入口 |
||||||
|
* @author Lucian.Chen |
||||||
|
* @version 10.0 |
||||||
|
* Created by Lucian.Chen on 2021/2/20 |
||||||
|
*/ |
||||||
|
public interface PluginManagerProvider extends Selectable { |
||||||
|
|
||||||
|
String MARK_STRING = "PluginManagerProvider"; |
||||||
|
|
||||||
|
int CURRENT_LEVEL = 1; |
||||||
|
|
||||||
|
// 插件管理
|
||||||
|
UpdateAction pluginManagerAction(); |
||||||
|
} |
Loading…
Reference in new issue