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

org.assertj.swing.driver.JTreeEditableQuery Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
package org.assertj.swing.driver;

import static org.assertj.core.util.Preconditions.checkNotNull;
import static org.assertj.swing.edt.GuiActionRunner.execute;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.swing.JTree;

import org.assertj.swing.annotation.RunsInEDT;
import org.assertj.swing.edt.GuiQuery;

/**
 * Indicates whether a {@code JTree} is editable.
 * 
 * @author Alex Ruiz
 */
final class JTreeEditableQuery {
  @RunsInEDT
  static boolean isEditable(final @Nonnull JTree tree) {
    Boolean result = execute(new GuiQuery() {
      @Override
      protected @Nullable Boolean executeInEDT() {
        return tree.isEditable();
      }
    });
    return checkNotNull(result);
  }

  private JTreeEditableQuery() {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy