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.annotations.CsvFile;
14  
15  /**
16   * The Class BeanWithNonStandardObject.
17   */
18  @CsvFile(useHeader = false)
19  public class BeanWithNonStandardObject {
20  
21      /** The bean. */
22      private BeanSimple bean;
23  
24      /**
25       * Gets the bean.
26       *
27       * @return the bean
28       */
29      public BeanSimple getBean() {
30          return bean;
31      }
32  
33      /**
34       * Sets the bean.
35       *
36       * @param bean
37       *            the new bean
38       */
39      public void setBean(BeanSimple bean) {
40          this.bean = bean;
41      }
42  }