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.
25 lines
502 B
25 lines
502 B
6 years ago
|
package com.fr.start;
|
||
|
|
||
|
/**
|
||
|
* Created by juhaoyu on 2019-06-14.
|
||
|
* 设计器上下文
|
||
|
*/
|
||
|
public class DesignerInitial {
|
||
|
|
||
|
private static volatile Designer designer;
|
||
|
|
||
|
public synchronized static void init(String... args) {
|
||
|
|
||
|
designer = new Designer(args);
|
||
|
}
|
||
|
|
||
|
public synchronized static void show() {
|
||
|
|
||
|
if (designer != null) {
|
||
|
designer.show();
|
||
|
}
|
||
|
//启动画面结束
|
||
|
SplashContext.getInstance().hide();
|
||
|
}
|
||
|
}
|