Package windows.factory

Source Code of windows.factory.WindowsFactory2

package windows.factory;

import windows.components.WindowsButton;
import windows.components.WindowsMenu;
import abstraction.components.Button;
import abstraction.components.Menu;
import abstraction.factory.GUIFactory2;



public class WindowsFactory2 extends GUIFactory2{
  private static WindowsFactory2 factory = new WindowsFactory2();
 
    public static WindowsFactory2 getInstance () {return factory;};
   
    public Button createButton(){
        return(new WindowsButton());
    }
   
    public Menu createMenu(){
        return(new WindowsMenu());
    }
   
}
TOP

Related Classes of windows.factory.WindowsFactory2

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.