Package net.sf.robocode.gui

Examples of net.sf.robocode.gui.IWindowManagerBase


  /**
   * {@inheritDoc}
   */
  public void setVisible(boolean visible) {
    IWindowManagerBase windowManager = ContainerBase.getComponent(IWindowManagerBase.class);
    if (windowManager != null) {
      windowManager.setVisibleForRobotEngine(visible);
    } else {
      Logger.logError(
          "setVisible: No window manager was found.\n"
              + "Perhaps you are missing the robocode.ui-1.x.x.x-jar file or the GUI has been disabled?");
    }
View Full Code Here

TOP

Related Classes of net.sf.robocode.gui.IWindowManagerBase

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.