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.
24 lines
502 B
24 lines
502 B
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(); |
|
} |
|
}
|
|
|