View Javadoc
1   package com.opencsv.bean.mocks.ignore;
2   
3   public class NonSerial {
4       private static final long serialVersionUID = 1L;
5       private int testInt;
6       private String testString;
7   
8       public NonSerial(int testInt, String testString) {
9           this.testInt = testInt;
10          this.testString = testString;
11      }
12  
13      public int getTestInt() {
14          return testInt;
15      }
16  
17      public void setTestInt(int testInt) {
18          this.testInt = testInt;
19      }
20  
21      public String getTestString() {
22          return testString;
23      }
24  
25      public void setTestString(String testString) {
26          this.testString = testString;
27      }
28  }