View Javadoc
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.test.model;
12  
13  import org.csveed.annotations.CsvFile;
14  import org.csveed.annotations.CsvIgnore;
15  
16  /**
17   * The Class BeanLotsOfIgnores.
18   */
19  @CsvFile(useHeader = false)
20  public class BeanLotsOfIgnores {
21  
22      /** The take this 1. */
23      private Integer takeThis1;
24  
25      /** The leave that 1. */
26      @CsvIgnore
27      private Integer leaveThat1;
28  
29      /** The pick this 1. */
30      private Integer pickThis1;
31  
32      /** The ditch that 1. */
33      @CsvIgnore
34      private Integer ditchThat1;
35  
36      /** The choose this 1. */
37      private Integer chooseThis1;
38  
39      /**
40       * Gets the take this 1.
41       *
42       * @return the take this 1
43       */
44      public Integer getTakeThis1() {
45          return takeThis1;
46      }
47  
48      /**
49       * Sets the take this 1.
50       *
51       * @param takeThis1
52       *            the new take this 1
53       */
54      public void setTakeThis1(Integer takeThis1) {
55          this.takeThis1 = takeThis1;
56      }
57  
58      /**
59       * Gets the leave that 1.
60       *
61       * @return the leave that 1
62       */
63      public Integer getLeaveThat1() {
64          return leaveThat1;
65      }
66  
67      /**
68       * Sets the leave that 1.
69       *
70       * @param leaveThat1
71       *            the new leave that 1
72       */
73      public void setLeaveThat1(Integer leaveThat1) {
74          this.leaveThat1 = leaveThat1;
75      }
76  
77      /**
78       * Gets the pick this 1.
79       *
80       * @return the pick this 1
81       */
82      public Integer getPickThis1() {
83          return pickThis1;
84      }
85  
86      /**
87       * Sets the pick this 1.
88       *
89       * @param pickThis1
90       *            the new pick this 1
91       */
92      public void setPickThis1(Integer pickThis1) {
93          this.pickThis1 = pickThis1;
94      }
95  
96      /**
97       * Gets the ditch that 1.
98       *
99       * @return the ditch that 1
100      */
101     public Integer getDitchThat1() {
102         return ditchThat1;
103     }
104 
105     /**
106      * Sets the ditch that 1.
107      *
108      * @param ditchThat1
109      *            the new ditch that 1
110      */
111     public void setDitchThat1(Integer ditchThat1) {
112         this.ditchThat1 = ditchThat1;
113     }
114 
115     /**
116      * Gets the choose this 1.
117      *
118      * @return the choose this 1
119      */
120     public Integer getChooseThis1() {
121         return chooseThis1;
122     }
123 
124     /**
125      * Sets the choose this 1.
126      *
127      * @param chooseThis1
128      *            the new choose this 1
129      */
130     public void setChooseThis1(Integer chooseThis1) {
131         this.chooseThis1 = chooseThis1;
132     }
133 }