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
package com.fr.plugin.widget.ztree.core; |
|
|
|
import com.fanruan.api.function.FunctionKit; |
|
import com.fr.plugin.widget.ztree.tools.ZTreeConstants; |
|
|
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor;//废弃 |
|
|
|
/** |
|
* 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() { |
|
return FunctionKit.generateFunctionID(ZTreeConstants.PLUGIN_ID); |
|
} |
|
|
|
@Override |
|
public String getLocaleKey() { |
|
return "Plugin-ZTree_Widget_Name"; |
|
} |
|
} |