Package org.aavso.tools.vstar.ui

Examples of org.aavso.tools.vstar.ui.IMainUI


   * case where the UI is that of an applet.
   */
  public static Window findActiveWindow() {
    Window wdw = null;

    IMainUI ui = Mediator.getUI();

    if (ui != null) {
      if (ui.getUiType() == UIType.DESKTOP) {
        if (Window.getWindows().length > 0) {
          for (Window window : Window.getWindows()) {
            if (window.isActive()) {
              wdw = window;
              break;
View Full Code Here

TOP

Related Classes of org.aavso.tools.vstar.ui.IMainUI

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.