All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.tool.poi.xls.EWorkbook Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.5.3
Show newest version
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