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