/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
D | HumanTest.java | 40 Human father = new Human(); in testNoChildren() local 41 father.setName("Father"); in testNoChildren() 42 father.setBirthday(new Date(1000000000)); in testNoChildren() 43 father.setBirthPlace("Leningrad"); in testNoChildren() 44 father.setBankAccountOwner(father); in testNoChildren() 49 father.setPartner(mother); in testNoChildren() 50 mother.setPartner(father); in testNoChildren() 51 mother.setBankAccountOwner(father); in testNoChildren() 53 String output = yaml.dump(father); in testNoChildren() 59 assertEquals("Father", father2.getName()); in testNoChildren() [all …]
|
D | Human_WithArrayOfChildrenTest.java | 31 private Human_WithArrayOfChildren father; field in Human_WithArrayOfChildrenTest.Human_WithArrayOfChildren 42 return father; in getFather() 45 public void setFather(Human_WithArrayOfChildren father) { in setFather() argument 46 this.father = father; in setFather() 84 Human_WithArrayOfChildren father = new Human_WithArrayOfChildren(); in createSon() local 85 father.setName("Father"); in createSon() 86 father.setBirthday(new Date(1000000000)); in createSon() 87 father.setBirthPlace("Leningrad"); in createSon() 88 father.setBankAccountOwner(father); in createSon() 94 father.setPartner(mother); in createSon() [all …]
|
D | Human3.java | 23 private Human3 father; field in Human3 34 return father; in getFather() 37 public void setFather(Human3 father) { in setFather() argument 38 this.father = father; in setFather()
|
D | Human2.java | 23 private Human2 father; field in Human2 34 return father; in getFather() 37 public void setFather(Human2 father) { in setFather() argument 38 this.father = father; in setFather()
|
D | Human.java | 23 private Human father; field in Human 34 return father; in getFather() 37 public void setFather(Human father) { in setFather() argument 38 this.father = father; in setFather()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/ |
D | HumanGenericsTest.java | 46 HumanGen father = new HumanGen(); in testNoChildren() local 47 father.setName("Father"); in testNoChildren() 48 father.setBirthday(new Date(1000000000)); in testNoChildren() 49 father.setBirthPlace("Leningrad"); in testNoChildren() 50 father.setBankAccountOwner(father); in testNoChildren() 55 father.setPartner(mother); in testNoChildren() 56 mother.setPartner(father); in testNoChildren() 57 mother.setBankAccountOwner(father); in testNoChildren() 59 String output = yaml.dump(father); in testNoChildren() 65 assertEquals("Father", father2.getName()); in testNoChildren() [all …]
|
D | AbstractHumanGen.java | 24 private K father; field in AbstractHumanGen 51 return father; in getFather() 54 public void setFather(K father) { in setFather() argument 55 this.father = father; in setFather()
|
/external/snakeyaml/src/test/resources/recursive/ |
D | with-childrenArray-no-root-tag.yaml | 12 father: *id001 18 father: null 24 father: null 26 name: Father play 31 father: *id001
|
D | with-children-as-list.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 32 father: *id001
|
D | with-children-3.yaml | 12 father: *id001 18 father: null 24 father: null 26 name: Father play 31 father: *id001
|
D | with-children-2.yaml | 12 father: *id001 18 father: null 25 father: null 27 name: Father play 32 father: *id001
|
D | with-childrenArray.yaml | 12 father: *id001 18 father: null 24 father: null 26 name: Father play 31 father: *id001
|
D | with-children-no-root-tag.yaml | 12 father: *id001 18 father: null 25 father: null 27 name: Father play 32 father: *id001
|
D | with-children.yaml | 12 father: *id001 18 father: null 25 father: null 27 name: Father play 32 father: *id001
|
D | with-children-as-set.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 33 father: *id001
|
D | with-children-as-map.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 33 father: *id001
|
D | with-children-pretty.yaml | 14 father: *id001, 20 father: null, 30 father: null, 32 name: Father, 39 father: *id001,
|
/external/snakeyaml/src/test/resources/recursive/generics/ |
D | with-children-2.yaml | 12 father: *id001 18 father: null 25 father: null 27 name: Father play 32 father: *id001
|
D | with-children-as-list.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 32 father: *id001
|
D | with-children-3.yaml | 13 father: *id001 19 father: null 25 father: null 27 name: Father play 32 father: *id001
|
D | with-children.yaml | 13 father: *id001 19 father: null 26 father: null 28 name: Father play 33 father: *id001
|
D | with-children-as-set.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 33 father: *id001
|
D | with-children-as-map.yaml | 8 father: null 10 name: Father 16 father: null 23 father: *id001 33 father: *id001
|
D | no-children-2.yaml | 6 father: null 8 name: Father 14 father: null
|
D | no-children-1.yaml | 6 father: null 8 name: Father 14 father: null
|