diff --git a/src/main/java/com/fr/plugin/loading/Holder.java b/src/main/java/com/fr/plugin/loading/Holder.java new file mode 100644 index 0000000..1c2425e --- /dev/null +++ b/src/main/java/com/fr/plugin/loading/Holder.java @@ -0,0 +1,24 @@ +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(); + } + }; +} \ No newline at end of file