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.
28 lines
454 B
28 lines
454 B
6 years ago
|
package com.fr.start;
|
||
|
|
||
|
import com.fr.design.fun.OemProcessor;
|
||
|
import com.fr.module.Activator;
|
||
|
import com.fr.module.extension.Prepare;
|
||
|
|
||
|
/**
|
||
|
* 设计器OEM注册
|
||
|
*/
|
||
|
public class OemActivator extends Activator implements Prepare {
|
||
|
|
||
|
@Override
|
||
|
public void start() {
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void stop() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void prepare() {
|
||
|
// 加入Oem
|
||
|
setSingleton(OemProcessor.class, new OemImpl());
|
||
|
}
|
||
|
|
||
|
}
|