1 package com.opencsv.bean.mocks.recurse;
2
3 import com.opencsv.bean.CsvBindByName;
4 import com.opencsv.bean.CsvBindByPosition;
5
6 public class RecursionMockLevelThreePointTwo {
7 @CsvBindByName
8 @CsvBindByPosition(position = 5)
9 private short shortLevelThree;
10
11 public short getShortLevelThree() {
12 return shortLevelThree;
13 }
14
15 public void setShortLevelThree(short shortLevelThree) {
16 this.shortLevelThree = shortLevelThree;
17 }
18 }