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.
18 lines
492 B
18 lines
492 B
3 years ago
|
package com.fr.plugin.sqy.kj.calendar;
|
||
|
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
import com.fr.stable.fun.impl.AbstractJavaScriptFileHandler;
|
||
|
|
||
|
@FunctionRecorder
|
||
|
public class FormJsFileHandler extends AbstractJavaScriptFileHandler{
|
||
|
|
||
|
@ExecuteFunctionRecord
|
||
|
@Override
|
||
|
public String[] pathsForFiles() {
|
||
|
return new String[]{
|
||
|
"com/fr/plugin/sqy/kj/calendar/js/plugin_form_main.js"
|
||
|
};
|
||
|
}
|
||
|
}
|