1 /* 2 * CSVeed (https://github.com/42BV/CSVeed) 3 * 4 * Copyright 2013-2023 CSVeed. 5 * 6 * All rights reserved. This program and the accompanying materials 7 * are made available under the terms of The Apache Software License, 8 * Version 2.0 which accompanies this distribution, and is available at 9 * https://www.apache.org/licenses/LICENSE-2.0.txt 10 */ 11 package org.csveed.row; 12 13 /** 14 * The Class CellPositionInRow. 15 */ 16 public class CellPositionInRow { 17 18 /** The start. */ 19 private int start; 20 21 /** The end. */ 22 private int end; 23 24 /** 25 * Gets the start. 26 * 27 * @return the start 28 */ 29 public int getStart() { 30 return start; 31 } 32 33 /** 34 * Sets the start. 35 * 36 * @param start 37 * the new start 38 */ 39 public void setStart(int start) { 40 this.start = start; 41 } 42 43 /** 44 * Gets the end. 45 * 46 * @return the end 47 */ 48 public int getEnd() { 49 return end; 50 } 51 52 /** 53 * Sets the end. 54 * 55 * @param end 56 * the new end 57 */ 58 public void setEnd(int end) { 59 this.end = end; 60 } 61 }