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

cn.afterturn.easypoi.excel.graph.entity.ExcelTitleCell Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package cn.afterturn.easypoi.excel.graph.entity;

/**
 * @author xfowrld
 * @since 2015-12-30
 * @version 1.0
 * 
 */
public class ExcelTitleCell
{
	private Integer row;
	private Integer col;
	
	public ExcelTitleCell(){
		
	}
	
	public ExcelTitleCell(Integer row,Integer col){
		this.row=row;
		this.col=col;
	}
	
	public Integer getRow()
	{
		return row;
	}
	public void setRow(Integer row)
	{
		this.row = row;
	}
	public Integer getCol()
	{
		return col;
	}
	public void setCol(Integer col)
	{
		this.col = col;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy