View Javadoc
1   package com.opencsv.bean.mocks.recurse;
2   
3   public class RecursionMockLevelThreePointZeroNoAnnotations {
4   
5       /**
6        * This constructor exists to ensure that opencsv cannot create this
7        * bean. This bean must be created and initialized by the encapsulating
8        * bean.
9        *
10       * @param f The floating point number to initialize the bean with
11       */
12      public RecursionMockLevelThreePointZeroNoAnnotations(float f) {
13          floatLevelThree = f;
14      }
15  
16      private float floatLevelThree;
17  
18      public float getFloatLevelThree() {
19          return floatLevelThree;
20      }
21  
22      public void setFloatLevelThree(float floatLevelThree) {
23          this.floatLevelThree = floatLevelThree;
24      }
25  }