
com.readytalk.swt.helpers.WidgetHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swt-bling Show documentation
Show all versions of swt-bling Show documentation
Blinged-out, modern widgets for SWT
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