Package com

Examples of com.Menu


import com.animal.Duck; //nama folder selalu huruf kecil, nama class selalu huruf pertama kapital
import com.animal.PAnimal;

public class Cooker {
    public void cook(Duck duck) {
        Menu menu1 = new Menu(1, "bebek", MenuType.FRIED); // pake enum sebagai parameter
        Menu menu2 = new Menu(2, "bebek", MenuType.ROASTED);
        Menu menu3 = new Menu(3, "bebek biasa"); // ini mirip yg kmrn

        menu1.process(duck);
        menu2.process(duck);
        menu3.process(duck);
    }
View Full Code Here

TOP

Related Classes of com.Menu

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.