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

panda.tool.poi.ppt.ESlide Maven / Gradle / Ivy

package panda.tool.poi.ppt;

import java.util.LinkedHashMap;
import java.util.Map;

public class ESlide {
	private EHeaderFooter header;
	private Map comments = new LinkedHashMap();
	private Map texts = new LinkedHashMap();
	private Map notes = new LinkedHashMap();
	
	/**
	 * @return the header
	 */
	public EHeaderFooter getHeader() {
		return header;
	}
	/**
	 * @param header the header to set
	 */
	public void setHeader(EHeaderFooter header) {
		this.header = header;
	}
	/**
	 * @return the comments
	 */
	public Map getComments() {
		return comments;
	}
	/**
	 * @param comments the comments to set
	 */
	public void setComments(Map comments) {
		this.comments = comments;
	}
	/**
	 * @return the texts
	 */
	public Map getTexts() {
		return texts;
	}
	/**
	 * @param texts the texts to set
	 */
	public void setTexts(Map texts) {
		this.texts = texts;
	}
	/**
	 * @return the notes
	 */
	public Map getNotes() {
		return notes;
	}
	/**
	 * @param notes the notes to set
	 */
	public void setNotes(Map notes) {
		this.notes = notes;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy