package com.report;
public class CustCell {
	/**
	 * 单元格起始列号
	 */
	private int StartCloums = 0;
	/**
	 * 单元格起始行号
	 */
	private int StartRows = 0;
	/**
	 * 单元格终止列号
	 */
	private int StopCloums = 0;
	/**
	 * 单元格终止行号
	 */
	private int StopRows = 0;
	/**
	 * 单元格字体大小
	 */
	private int FontSize = 10;
	/**
	 * 单元格字体加重
	 */
	private int BoldWeight = 10;
	/**
	 * 单元格内容
	 */
	private String Contents = "";
	/**
	 * 单元格批注
	 */
	private String Comment = null;
	/**
	 * 单元格是叶子节点吗？
	 */
	private boolean LeafIs = true;
	/**
	 * 标题对应的数据的下标
	 */
	private int DataCloum = 0;
	//构造函数
	public CustCell()
	{
	}
	public int getStartCloums()
	{
		return StartCloums;
	}
	public void setStartCloums(int startCloums)
	{
		this.StartCloums = startCloums;
	}
	public int getStartRows()
	{
		return StartRows;
	}
	public void setStartRows(int startRows)
	{
		this.StartRows = startRows;
	}
	public int getStopCloums()
	{
		return StopCloums;
	}
	public void setStopCloums(int stopCloums)
	{
		this.StopCloums = stopCloums;
	}
	public int getStopRows()
	{
		return StopRows;
	}
	public void setStopRows(int stopRows)
	{
		this.StopRows = stopRows;
	}
	
	public int getFontSize()
	{
		return FontSize;
	}
	public void setFontSize(int fontSize)
	{
		this.FontSize = fontSize;
	}
	public int getBoldWeight()
	{
		return BoldWeight;
	}
	public void setBoldWeight(int boldWeight)
	{
		this.BoldWeight = boldWeight;
	}
	public String getContents()
	{
		return Contents;
	}
	public void setContents(String contents)
	{
		this.Contents = contents;
	}
	
	public String getComment()
	{
		return Comment;
	}
	public void setComment(String comment)
	{
		this.Comment = comment;
	}
	public boolean getLeafIs()
	{
		return LeafIs;
	}
	public void setLeafIs(boolean leafIs)
	{
		this.LeafIs = leafIs;
	}
	public int getDataCloum()
	{
		return DataCloum;
	}
	public void setDataCloum(int dataCloum)
	{
		this.DataCloum = dataCloum;
	}
}
