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

panda.tool.poi.doc.EDocument Maven / Gradle / Ivy

package panda.tool.poi.doc;

import java.util.Map;

import panda.tool.poi.ESummary;


public class EDocument {
	private ESummary summary;
	private Map main;
	private Map comments;
	private Map footnote;
	private Map endnote;
	private Map header;
	private Map textbox;
	
	/**
	 * @return the summary
	 */
	public ESummary getSummary() {
		return summary;
	}

	/**
	 * @param summary the summary to set
	 */
	public void setSummary(ESummary summary) {
		this.summary = summary;
	}

	/**
	 * @return the main
	 */
	public Map getMain() {
		return main;
	}

	/**
	 * @param main the main to set
	 */
	public void setMain(Map main) {
		this.main = main;
	}

	/**
	 * @return the comments
	 */
	public Map getComments() {
		return comments;
	}

	/**
	 * @param comments the comments to set
	 */
	public void setComments(Map comments) {
		this.comments = comments;
	}

	/**
	 * @return the footnote
	 */
	public Map getFootnote() {
		return footnote;
	}

	/**
	 * @param footnote the footnote to set
	 */
	public void setFootnote(Map footnote) {
		this.footnote = footnote;
	}

	/**
	 * @return the endnote
	 */
	public Map getEndnote() {
		return endnote;
	}

	/**
	 * @param endnote the endnote to set
	 */
	public void setEndnote(Map endnote) {
		this.endnote = endnote;
	}

	/**
	 * @return the header
	 */
	public Map getHeader() {
		return header;
	}

	/**
	 * @param header the header to set
	 */
	public void setHeader(Map header) {
		this.header = header;
	}

	/**
	 * @return the textbox
	 */
	public Map getTextbox() {
		return textbox;
	}

	/**
	 * @param textbox the textbox to set
	 */
	public void setTextbox(Map textbox) {
		this.textbox = textbox;
	}

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy