HomeSort by relevance Sort by last modified time
    Searched refs:Bird (Results 1 - 5 of 5) sorted by null

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
Bird.java 18 public class Bird extends AbstractAnimal<Nest> {
BirdTest.java 27 Bird bird = new Bird(); local
28 bird.setName("Eagle");
32 bird.setHome(home);
34 String output = yaml.dumpAsMap(bird);
35 Bird parsed;
43 parsed = loader.loadAs(output, Bird.class);
52 parsed = loader.loadAs(output, Bird.class);
54 assertEquals(bird.getName(), parsed.getName())
    [all...]
GenericsBugDetector.java 27 * Check whether the proper class Nest for Bird's property 'home' is
31 for (PropertyDescriptor property : Introspector.getBeanInfo(Bird.class)
37 throw new RuntimeException("Bird must contain 'home' property.");
  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/DefaultMethods/
DiamondInheritance.java 39 * Horse Bird
44 * Both {@link Horse} and {@link Bird} interfaces implements the <code>go</code>
94 public interface Bird extends Animal {
97 * Return string representation of the "go" action for bird
99 * @return string representation of the "go" action for bird
107 * Return string representation of the "fly" action for bird
109 * @return string representation of the "fly" action for bird
118 * bird behavior.
122 public static class Pegasus implements Horse, Bird {
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/DefaultMethods/
DiamondInheritance.java 39 * Horse Bird
44 * Both {@link Horse} and {@link Bird} interfaces implements the <code>go</code>
94 public interface Bird extends Animal {
97 * Return string representation of the "go" action for bird
99 * @return string representation of the "go" action for bird
107 * Return string representation of the "fly" action for bird
109 * @return string representation of the "fly" action for bird
118 * bird behavior.
122 public static class Pegasus implements Horse, Bird {

Completed in 5597 milliseconds