Package osx.factory

Source Code of osx.factory.OSXFactory

package osx.factory;

import osx.components.OSXButton;
import abstraction.components.Button;
import abstraction.factory.GUIFactory;


public class OSXFactory extends GUIFactory {

  private static OSXFactory factory = new OSXFactory();

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

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

Related Classes of osx.factory.OSXFactory

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.