All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.readytalk.swt.helpers.WidgetHelper Maven / Gradle / Ivy

There is a newer version: 3.0.17
Show newest version
package com.readytalk.swt.helpers;

import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Widget;

public class WidgetHelper {
  public static boolean isWidgetSafe(Widget widget) {
    return widget != null && !widget.isDisposed();
  }

  public static boolean isControlSafeAndVisible(Control control) {
    return isWidgetSafe(control) && control.isVisible();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy