1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.yaml.snakeyaml.issues.issue60;
17
18 import java.io.File;
19 import java.util.ArrayList;
20 import java.util.Date;
21 import java.util.HashMap;
22 import java.util.List;
23 import java.util.Map;
24
25 public class SkipBean {
26
27 private List<Integer> listInt;
28 private List<String> listStr;
29 private List<Date> listDate;
30 private List<File> empty = new ArrayList<File>(0);
31 private Map<String, Integer> map = new HashMap<String, Integer>(0);
32 private String text;
33 private Integer number;
34
35 public List<Integer> getListInt() {
36 return listInt;
37 }
38
39 public void setListInt(List<Integer> listInt) {
40 this.listInt = listInt;
41 }
42
43 public List<String> getListStr() {
44 return listStr;
45 }
46
47 public void setListStr(List<String> listStr) {
48 this.listStr = listStr;
49 }
50
51 public List<Date> getListDate() {
52 return listDate;
53 }
54
55 public void setListDate(List<Date> listDate) {
56 this.listDate = listDate;
57 }
58
59 public String getText() {
60 return text;
61 }
62
63 public void setText(String text) {
64 this.text = text;
65 }
66
67 public Integer getNumber() {
68 return number;
69 }
70
71 public void setNumber(Integer number) {
72 this.number = number;
73 }
74
75 public List<File> getEmpty() {
76 return empty;
77 }
78
79 public void setEmpty(List<File> empty) {
80 this.empty = empty;
81 }
82
83 public Map<String, Integer> getMap() {
84 return map;
85 }
86
87 public void setMap(Map<String, Integer> map) {
88 this.map = map;
89 }
90 }