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.
38 lines
975 B
38 lines
975 B
3 years ago
|
/**
|
||
|
* Copyright (C), 2015-2019
|
||
|
* FileName: JavaScriptFile
|
||
|
* Author: Louis
|
||
|
* Date: 2019/9/4 16:33
|
||
|
* Description: JavaScriptFile
|
||
|
* History:
|
||
|
* <author> <time> <version> <desc>
|
||
|
*/
|
||
|
package com.fr.plugin.hfic.web;
|
||
|
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.stable.fun.Authorize;
|
||
|
import com.fr.stable.fun.impl.AbstractJavaScriptFileHandler;
|
||
|
|
||
|
import static com.fr.plugin.hfic.LocaleFinder.PLUGIN_ID;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 〈Function Description〉<br>
|
||
|
* 〈JavaScriptFile〉
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
@EnableMetrics
|
||
|
@Authorize(callSignKey = PLUGIN_ID)
|
||
|
public class JavaScriptFile extends AbstractJavaScriptFileHandler {
|
||
|
@Override
|
||
|
@Focus(id = PLUGIN_ID, text = "Plugin-hfic", source = Original.PLUGIN)
|
||
|
public String[] pathsForFiles() {
|
||
|
return new String[]{
|
||
|
"/com/fr/plugin/hfic/web/excel.js"
|
||
|
};
|
||
|
}
|
||
|
}
|