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