Home
last modified time | relevance | path

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

/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
H A DHuman3.java19 public class Human3 extends AbstractHuman { class
21 private Human3 father;
22 private Human3 mother;
23 private Human3 partner;
24 private Human3 bankAccountOwner;
25 protected List<Human3> children;
27 public Human3() { in Human3() method in Human3
28 children = new ArrayList<Human3>(); in Human3()
31 public Human3 getFather() { in getFather()
35 public void setFather(Human3 father) { in setFather()
[all …]
H A DHumanTest.java311 Human3 father = new Human3(); in testChildren3()
317 Human3 mother = new Human3(); in testChildren3()
325 Human3 son = new Human3(); in testChildren3()
333 Human3 daughter = new Human3(); in testChildren3()
341 ArrayList<Human3> children = new ArrayList<Human3>(); in testChildren3()
348 Constructor constructor = new Constructor(Human3.class); in testChildren3()
349 TypeDescription Human3Description = new TypeDescription(Human3.class); in testChildren3()
350 Human3Description.putListPropertyType("children", Human3.class); in testChildren3()
359 Human3 son2 = yaml.load(output); in testChildren3()
363 Human3 father2 = son2.getFather(); in testChildren3()
[all …]
/aosp_15_r20/external/snakeyaml/src/test/resources/recursive/
H A Dwith-children-as-list.yaml2 - !!org.yaml.snakeyaml.recursive.Human3
27 - !!org.yaml.snakeyaml.recursive.Human3
H A Dwith-children-3.yaml1 &id002 !!org.yaml.snakeyaml.recursive.Human3