Package org.objectweb.speedo.pobjects.inheritance.filtered

Examples of org.objectweb.speedo.pobjects.inheritance.filtered.Animal


      fail("Zoo not found");
    }
    assertNotNull("Null zoo", zoo);
    Collection animals = zoo.getAnimals();
    for(Iterator it = animals.iterator(); it.hasNext(); ) {
      Animal a = (Animal) it.next();
      logger.log(BasicLevel.INFO, "Animal: " + a.getName());
    }
    Object a = zoo.getaKangaroo();
    assertNotNull("Null AnAnimal", a);
    assertTrue("Bad Animal type", a instanceof Kangaroo);
    Kangaroo ko = (Kangaroo) a;
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.pobjects.inheritance.filtered.Animal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.