![JAR search and dependency download from the Maven repository](/logo.png)
panda.tool.poi.xls.EWorkbook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tool Show documentation
Show all versions of panda-tool Show documentation
Panda Tool contains some commonly used tools and source code generator for Panda Mvc. Can generate Entity/Query/Dao/Action class, Freemarker (HTML) template file.
package panda.tool.poi.xls;
import java.util.LinkedHashMap;
import java.util.Map;
import panda.tool.poi.ESummary;
public class EWorkbook {
private ESummary summary;
private Map sheets = new LinkedHashMap();
/**
* @return the summary
*/
public ESummary getSummary() {
return summary;
}
/**
* @param summary the summary to set
*/
public void setSummary(ESummary summary) {
this.summary = summary;
}
/**
* @return the sheets
*/
public Map getSheets() {
return sheets;
}
/**
* @param sheets the sheets to set
*/
public void setSheets(Map sheets) {
this.sheets = sheets;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy