Home
last modified time | relevance | path

Searched full:human2 (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
H A DHuman2.java19 public class Human2 extends AbstractHuman { class
21 private Human2 father;
22 private Human2 mother;
23 private Human2 partner;
24 private Human2 bankAccountOwner;
25 protected Map<Human2, String> children;
27 public Human2() { in Human2() method in Human2
28 children = new HashMap<Human2, String>(); in Human2()
31 public Human2 getFather() { in getFather()
35 public void setFather(Human2 father) { in setFather()
[all …]
H A DHumanTest.java242 Human2 father = new Human2(); in testChildren2()
248 Human2 mother = new Human2(); in testChildren2()
256 Human2 son = new Human2(); in testChildren2()
264 Human2 daughter = new Human2(); in testChildren2()
272 HashMap<Human2, String> children = new LinkedHashMap<Human2, String>(2); in testChildren2()
281 Constructor constructor = new Constructor(Human2.class, options); in testChildren2()
282 TypeDescription humanDescription = new TypeDescription(Human2.class); in testChildren2()
283 humanDescription.putMapPropertyType("children", Human2.class, String.class); in testChildren2()
292 Human2 son2 = yaml.load(output); in testChildren2()
296 Human2 father2 = son2.getFather(); in testChildren2()
[all …]
/aosp_15_r20/external/snakeyaml/src/test/resources/recursive/
H A Dwith-children-as-map.yaml2 ? !!org.yaml.snakeyaml.recursive.Human2
3 bankAccountOwner: &id001 !!org.yaml.snakeyaml.recursive.Human2
11 partner: &id003 !!org.yaml.snakeyaml.recursive.Human2
28 ? !!org.yaml.snakeyaml.recursive.Human2
H A Dwith-children-2.yaml1 &id002 !!org.yaml.snakeyaml.recursive.Human2