1 /* 2 * CellPosition.java 3 * Created on 23 Август 2006 г., 16:51 4 */ 5 6 package org.weda.report.excel; 7 8 /** 9 * 10 * @author Mikhail Titov 11 */ 12 public class CellPosition { 13 private int row; 14 private int col; 15 16 public CellPosition(int row, int col){ 17 this.row = row; 18 this.col = col; 19 } 20 21 public int getRow() { 22 return row; 23 } 24 25 public int getCol() { 26 return col; 27 } 28 29 }