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.
17 lines
476 B
17 lines
476 B
package com.fr.plugin.xx.jsd9663; |
|
|
|
import com.fr.plugin.transform.ExecuteFunctionRecord; |
|
import com.fr.plugin.transform.FunctionRecorder; |
|
import com.fr.stable.fun.impl.AbstractJavaScriptFileHandler; |
|
|
|
@FunctionRecorder |
|
public class JsFileHandler extends AbstractJavaScriptFileHandler{ |
|
|
|
@ExecuteFunctionRecord |
|
@Override |
|
public String[] pathsForFiles() { |
|
return new String[]{ |
|
"com/fr/plugin/xx/jsd9663/locale/js/jsd9663.js" |
|
}; |
|
} |
|
}
|
|
|