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.test.annotations.IgnoreClass;
14  import org.csveed.test.annotations.IgnoreField;
15  
16  /**
17   * The Class BeanSimple.
18   */
19  @IgnoreClass
20  public class BeanSimple {
21  
22      /** The name. */
23      @IgnoreField
24      public String name;
25  
26      /**
27       * Gets the name.
28       *
29       * @return the name
30       */
31      public String getName() {
32          return name;
33      }
34  
35      /**
36       * Sets the name.
37       *
38       * @param name
39       *            the new name
40       */
41      public void setName(String name) {
42          this.name = name;
43      }
44  }