You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
Java
15 lines
341 B
Java
package com.inswave.template.provider;
|
|
|
|
import org.w3c.dom.Document;
|
|
|
|
import websquare.http.controller.grid.excel.write.IExternalGridDataProvider;
|
|
|
|
public class ExcelDownHeader implements IExternalGridDataProvider {
|
|
|
|
public String[] getData(Document requestObj) throws Exception {
|
|
String[] returnData = { "" };
|
|
return returnData;
|
|
}
|
|
|
|
}
|