第六章控件开发
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.
 
 
 

16 lines
490 B

package com.fr.plugin;
import com.fr.plugin.transform.ExecuteFunctionRecord;
import com.fr.plugin.transform.FunctionRecorder;
import com.fr.stable.fun.impl.AbstractCssFileHandler;
@FunctionRecorder
public class MyCSSFileHandler extends AbstractCssFileHandler {
@Override
@ExecuteFunctionRecord
public String[] pathsForFiles() {
return new String[]{
"com/fr/plugin/web/css/bootstrap.css",
"com/fr/plugin/web/js/my.css"
};
}
}