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.
27 lines
701 B
27 lines
701 B
9 years ago
|
package com.fr.plugin.widget.ztree.core;
|
||
|
|
||
6 years ago
|
import com.fanruan.api.function.FunctionKit;
|
||
9 years ago
|
import com.fr.plugin.widget.ztree.tools.ZTreeConstants;
|
||
6 years ago
|
|
||
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor;//废弃
|
||
9 years ago
|
|
||
|
/**
|
||
|
* Created by richie on 15/12/2.
|
||
|
*/
|
||
|
public class ZTreeFunctionProcessor extends AbstractFunctionProcessor {
|
||
|
|
||
|
private static ZTreeFunctionProcessor instance = new ZTreeFunctionProcessor();
|
||
|
|
||
|
public static ZTreeFunctionProcessor getInstance() {
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
public int getId() {
|
||
6 years ago
|
return FunctionKit.generateFunctionID(ZTreeConstants.PLUGIN_ID);
|
||
9 years ago
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getLocaleKey() {
|
||
|
return "Plugin-ZTree_Widget_Name";
|
||
|
}
|
||
|
}
|