Package ubuntu.factory

Source Code of ubuntu.factory.UbuntuFactory

package ubuntu.factory;

import ubuntu.components.UbuntuButton;
import abstraction.components.Button;
import abstraction.factory.GUIFactory;


public class UbuntuFactory extends GUIFactory {

  private static UbuntuFactory factory = new UbuntuFactory();

  public static UbuntuFactory getInstance() {
    return factory;
  };

  @Override
  public Button createButton() {
    return (new UbuntuButton());
  }
}
TOP

Related Classes of ubuntu.factory.UbuntuFactory

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.