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