Examples of Salad


Examples of org.apache.ojb.broker.Salad

        ODMGGourmet doris = new ODMGGourmet("doris");

        Fish tuna = new Fish("tuna", 242, "salt");
        Fish trout = new Fish("trout", 52, "fresh water");

        Salad radiccio = new Salad("Radiccio", 7, "red");
        Salad lolloverde = new Salad("Lollo verde", 7, "green");

        james.addFavoriteFood(tuna);
        james.addFavoriteFood(radiccio);

        doris.addFavoriteFood(tuna);
View Full Code Here

Examples of org.apache.ojb.broker.Salad

        ODMGGourmet doris = new ODMGGourmet(postfix + "_doris");

        Fish tuna = new Fish(postfix + "_tuna", 242, "salt");
        Fish trout = new Fish(postfix + "_trout", 52, "fresh water");

        Salad radiccio = new Salad(postfix + "_Radiccio", 7, "red");
        Salad lolloverde = new Salad(postfix + "_Lollo verde", 7, "green");

        james.addFavoriteFood(tuna);
        james.addFavoriteFood(radiccio);

        doris.addFavoriteFood(tuna);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.