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 /**
14 * The Class BeanWithCustomNumber.
15 */
16 public class BeanWithCustomNumber {
17
18 /** The number. */
19 private Double number;
20
21 /**
22 * Gets the number.
23 *
24 * @return the number
25 */
26 public Double getNumber() {
27 return number;
28 }
29
30 /**
31 * Sets the number.
32 *
33 * @param number
34 * the new number
35 */
36 public void setNumber(Double number) {
37 this.number = number;
38 }
39 }