FineBI插件开发工程。
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.
 

25 lines
682 B

package com.finebi.plugin;
import com.fr.web.struct.Component;
import com.fr.web.struct.browser.RequestClient;
import com.fr.web.struct.category.ScriptPath;
import com.fr.web.struct.category.StylePath;
public class BIPluginDemoComponent extends Component {
public static final BIPluginDemoComponent KEY = new BIPluginDemoComponent();
private BIPluginDemoComponent() {
}
@Override
public ScriptPath script(RequestClient client) {
return ScriptPath.build("com/finebi/plugin/web/BIPluginDemo.js");
}
@Override
public StylePath style(RequestClient client) {
return StylePath.build("com/finebi/plugin/web/BIPluginDemo.css");
}
}