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 java.util.Date;
14  
15  /**
16   * The Class BeanVariousNotAnnotated.
17   */
18  public class BeanVariousNotAnnotated {
19  
20      /** The ignore me. */
21      private String ignoreMe;
22  
23      /** The txt. */
24      private String txt;
25  
26      /** The year. */
27      private Integer year;
28  
29      /** The number. */
30      private Double number;
31  
32      /** The date. */
33      private Date date;
34  
35      /** The year month. */
36      private Date yearMonth;
37  
38      /** The simple. */
39      private BeanSimple simple;
40  
41      /**
42       * Gets the txt.
43       *
44       * @return the txt
45       */
46      public String getTxt() {
47          return txt;
48      }
49  
50      /**
51       * Sets the txt.
52       *
53       * @param txt
54       *            the new txt
55       */
56      public void setTxt(String txt) {
57          this.txt = txt;
58      }
59  
60      /**
61       * Gets the year.
62       *
63       * @return the year
64       */
65      public Integer getYear() {
66          return year;
67      }
68  
69      /**
70       * Sets the year.
71       *
72       * @param year
73       *            the new year
74       */
75      public void setYear(Integer year) {
76          this.year = year;
77      }
78  
79      /**
80       * Gets the number.
81       *
82       * @return the number
83       */
84      public Double getNumber() {
85          return number;
86      }
87  
88      /**
89       * Sets the number.
90       *
91       * @param number
92       *            the new number
93       */
94      public void setNumber(Double number) {
95          this.number = number;
96      }
97  
98      /**
99       * Gets the date.
100      *
101      * @return the date
102      */
103     public Date getDate() {
104         return date;
105     }
106 
107     /**
108      * Sets the date.
109      *
110      * @param date
111      *            the new date
112      */
113     public void setDate(Date date) {
114         this.date = date;
115     }
116 
117     /**
118      * Gets the year month.
119      *
120      * @return the year month
121      */
122     public Date getYearMonth() {
123         return yearMonth;
124     }
125 
126     /**
127      * Sets the year month.
128      *
129      * @param yearMonth
130      *            the new year month
131      */
132     public void setYearMonth(Date yearMonth) {
133         this.yearMonth = yearMonth;
134     }
135 
136     /**
137      * Gets the ignore me.
138      *
139      * @return the ignore me
140      */
141     public String getIgnoreMe() {
142         return ignoreMe;
143     }
144 
145     /**
146      * Sets the ignore me.
147      *
148      * @param ignoreMe
149      *            the new ignore me
150      */
151     public void setIgnoreMe(String ignoreMe) {
152         this.ignoreMe = ignoreMe;
153     }
154 
155     /**
156      * Gets the simple.
157      *
158      * @return the simple
159      */
160     public BeanSimple getSimple() {
161         return simple;
162     }
163 
164     /**
165      * Sets the simple.
166      *
167      * @param simple
168      *            the new simple
169      */
170     public void setSimple(BeanSimple simple) {
171         this.simple = simple;
172     }
173 }