这是一个插件控件的开发示例,实现了一个基于ztree的参数树控件。
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

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";
}
}