自定义加载动画插件。
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
603 B

package com.fr.plugin.loading;
import com.fr.stable.fun.FunctionProcessor;
import com.fr.stable.fun.impl.AbstractFunctionProcessor;
/**
* Created by richie on 16/5/4.
* 没有任何作用的类,如果是只需要支持9.0或者10.0,用最新的功能点记录API接口
* @deprecated
*/
public class Holder {
private FunctionProcessor processor = new AbstractFunctionProcessor() {
@Override
public int getId() {
return super.getId();
}
@Override
public String getLocaleKey() {
return super.getLocaleKey();
}
};
}