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 BeanWithWrongAnnotation.
17 */
18 public class BeanWithWrongAnnotation {
19
20 /** The name. */
21 @CsvLocalizedNumber(language = "EN")
22 private String name;
23
24 /**
25 * Gets the name.
26 *
27 * @return the name
28 */
29 public String getName() {
30 return name;
31 }
32
33 /**
34 * Sets the name.
35 *
36 * @param name
37 * the new name
38 */
39 public void setName(String name) {
40 this.name = name;
41 }
42 }