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.
39 lines
1.0 KiB
39 lines
1.0 KiB
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: LayerStreamExportFunctionProcessor
|
||
|
* Author: Louis
|
||
|
* Date: 2021/12/3 9:23
|
||
|
*/
|
||
|
package com.fr.plugin.ibgq.excel;
|
||
|
|
||
|
import com.fr.stable.fun.FunctionHelper;
|
||
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor;
|
||
|
|
||
|
import static com.fr.plugin.ibgq.LocaleFinder.PLUGIN_ID;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <LayerStreamExportFunctionProcessor>
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class LayerStreamExportFunctionProcessor extends AbstractFunctionProcessor {
|
||
|
private static LayerStreamExportFunctionProcessor instance = new LayerStreamExportFunctionProcessor();
|
||
|
|
||
|
public LayerStreamExportFunctionProcessor() {
|
||
|
}
|
||
|
|
||
|
public static LayerStreamExportFunctionProcessor getInstance() {
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
public int getId() {
|
||
|
return FunctionHelper.generateFunctionID(PLUGIN_ID);
|
||
|
}
|
||
|
|
||
|
public String getLocaleKey() {
|
||
|
return "Plugin-ibgq_Excel_Stream_Export_Layer";
|
||
|
}
|
||
|
}
|