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.
21 lines
389 B
21 lines
389 B
package com.fr.start.module; |
|
|
|
import com.fr.module.Activator; |
|
import com.fr.start.DesignerInitial; |
|
|
|
/** |
|
* Created by juhaoyu on 2019-06-14. |
|
*/ |
|
public class DesignerInitActivator extends Activator { |
|
|
|
@Override |
|
public void start() { |
|
|
|
DesignerInitial.init(upFindSingleton(StartupArgs.class).get()); |
|
} |
|
|
|
@Override |
|
public void stop() { |
|
|
|
} |
|
}
|
|
|