Package com.eafit.collectionhomework.model

Examples of com.eafit.collectionhomework.model.Cat


    dog2.setDogName("Trosky");
    dog2.setId("123ABCD");
    Dog dog3 = new Dog();
    dog3.setDogName("Malu");
    dog3.setId("123A");
    Cat cat1 = new Cat();
    cat1.setId("666321");
    Cat cat2 = new Cat();
    cat2.setId("ABC321");
   
    dogToValiate = dog2;
    animalToValidate = cat1;
    firstAnimalToValidate = dog1;
View Full Code Here

TOP

Related Classes of com.eafit.collectionhomework.model.Cat

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.