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.
41 lines
1010 B
41 lines
1010 B
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: StreamExcelExportToolbarUI
|
||
|
* Author: xxx
|
||
|
* Date: 2021/12/3 9:26
|
||
|
*/
|
||
|
package com.fr.plugin.ifhd.excel.ui;
|
||
|
|
||
|
import com.fanruan.api.design.DesignKit;
|
||
|
import com.fr.design.fun.impl.AbstractToolbarItem;
|
||
|
import com.fr.form.ui.Widget;
|
||
|
import com.fr.plugin.ifhd.excel.StreamExcelExtensionButton;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <StreamExcelExportToolbarUI>
|
||
|
*
|
||
|
* @author xxx
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class StreamExcelExportToolbarUI extends AbstractToolbarItem {
|
||
|
public StreamExcelExportToolbarUI() {
|
||
|
}
|
||
|
|
||
|
public int currentAPILevel() {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
public Class<? extends Widget> classForWidget() {
|
||
|
return StreamExcelExtensionButton.class;
|
||
|
}
|
||
|
|
||
|
public String iconPathForWidget() {
|
||
|
return "/com/fr/plugin/ifhd/excel/images/excel.png";
|
||
|
}
|
||
|
|
||
|
public String nameForWidget() {
|
||
|
return DesignKit.i18nText("Plugin-ifhd_Excel_Stream_Export");
|
||
|
}
|
||
|
}
|