org.assertj.swing.driver.JToolBarIsFloatingQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-swing Show documentation
Show all versions of assertj-swing Show documentation
Fluent interface for functional GUI testing
package org.assertj.swing.driver;
import static javax.swing.SwingUtilities.getWindowAncestor;
import java.awt.Frame;
import java.awt.Window;
import javax.annotation.Nonnull;
import javax.swing.JToolBar;
import javax.swing.plaf.ToolBarUI;
import javax.swing.plaf.basic.BasicToolBarUI;
import org.assertj.swing.annotation.RunsInCurrentThread;
/**
*
* Indicates whether a {@code JToolBar} is floating.
*
*
*
* Note: Methods in this class are accessed in the current executing thread. Such thread may or may not be the
* event dispatch thread (EDT.) Client code must call methods in this class from the EDT.
*
*
* @author Yvonne Wang
* @author Alex Ruiz
*/
final class JToolBarIsFloatingQuery {
@RunsInCurrentThread
static boolean isJToolBarFloating(@Nonnull JToolBar toolBar) {
ToolBarUI ui = toolBar.getUI();
if (ui instanceof BasicToolBarUI) {
return ((BasicToolBarUI) ui).isFloating();
}
// Have to guess; probably ought to check for sibling components
Window w = getWindowAncestor(toolBar);
return !(w instanceof Frame) && toolBar.getParent().getComponentCount() == 1;
}
private JToolBarIsFloatingQuery() {
}
}