OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Human
(Results
1 - 5
of
5
) sorted by null
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
Human.java
21
public class
Human
extends AbstractHuman {
23
private
Human
father;
24
private
Human
mother;
25
private
Human
partner;
26
private
Human
bankAccountOwner;
27
protected Set<
Human
> children;
29
public
Human
() {
30
children = new HashSet<
Human
>();
33
public
Human
getFather() {
37
public void setFather(
Human
father)
[
all
...]
HumanTest.java
40
Human
father = new
Human
();
45
Human
mother = new
Human
();
57
Human
father2 = (
Human
) yaml.load(output);
66
Human
father = new
Human
();
71
Human
mother = new
Human
();
[
all
...]
/external/snakeyaml/src/test/java/examples/collections/
TypeSafePriorityTest.java
28
* Test ListBean->List<
Human
> developers <br/>
29
*
Human
is an interface and the global tags are required
45
List<
Human
> developers = parsed.getDevelopers();
58
private List<
Human
> developers;
72
public List<
Human
> getDevelopers() {
76
public void setDevelopers(List<
Human
> developers) {
81
public static interface
Human
{
89
public static class Developer implements
Human
{
TypeSafeListWithInterfaceTest.java
27
* Test ListBean->List<
Human
> developers <br/>
28
*
Human
is an interface and the global tags are required
37
List<
Human
> developers = new ArrayList<
Human
>();
54
fail("Global tags are required since
Human
is an interface.");
70
List<
Human
> developers = parsed.getDevelopers();
85
private List<
Human
> developers;
107
public List<
Human
> getDevelopers() {
111
public void setDevelopers(List<
Human
> developers) {
116
public static interface
Human
{
[
all
...]
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
AssignableFromTest.java
38
assertTrue(assignableFrom.apply(testMethodFor(
Human
.class)));
68
private class
Human
extends Mammal {
Completed in 289 milliseconds