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

org.assertj.swing.hierarchy.ExistingHierarchy Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
/**
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 * Copyright 2012-2015 the original author or authors.
 */
package org.assertj.swing.hierarchy;

import static org.assertj.core.util.Lists.newArrayList;
import static org.assertj.swing.awt.AWT.isAppletViewer;
import static org.assertj.swing.awt.AWT.isSharedInvisibleFrame;

import java.awt.Component;
import java.awt.Container;
import java.awt.Window;
import java.util.Collection;
import java.util.List;

import javax.annotation.Nonnull;

import org.assertj.core.util.VisibleForTesting;
import org.assertj.swing.annotation.RunsInCurrentThread;
import org.assertj.swing.monitor.WindowMonitor;

/**
 * Provides access to the current AWT hierarchy.
 * 
 * @author Alex Ruiz
 * @author Yvonne Wang
 */
public class ExistingHierarchy implements ComponentHierarchy {
  private static WindowMonitor windowMonitor = WindowMonitor.instance();

  private final ParentFinder parentFinder;
  private final ChildrenFinder childrenFinder;

  public ExistingHierarchy() {
    this(new ParentFinder(), new ChildrenFinder());
  }

  @VisibleForTesting
  ExistingHierarchy(@Nonnull ParentFinder parentFinder, @Nonnull ChildrenFinder childrenFinder) {
    this.parentFinder = parentFinder;
    this.childrenFinder = childrenFinder;
  }

  @Override
  public @Nonnull Collection roots() {
    List roots = newArrayList();
    for (Window w : windowMonitor.rootWindows()) {
      roots.add(w);
    }
    return roots;
  }

  /**
   * 

* Returns the parent for the given AWT or Swing {@code Component}. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT.) Client code must call this method from the EDT. *

* * @param c the given {@code Component}. * @return the parent for the given {@code Component}. */ @RunsInCurrentThread @Override public Container parentOf(@Nonnull Component c) { return parentFinder.parentOf(c); } /** * Returns whether the given AWT or Swing {@code Component} is reachable from any of the root windows. The default is * to consider all components to be contained in the hierarchy, whether they are reachable or not. * * @param c the given {@code Component}. * @return {@code true}. */ @Override public boolean contains(@Nonnull Component c) { return true; } /** *

* Returns all descendants of interest of the given AWT or Swing {@code Component}. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT.) Client code must call this method from the EDT. *

* * @param c the given {@code Component}. * @return all descendants of interest of the given {@code Component}. */ @RunsInCurrentThread @Override public @Nonnull Collection childrenOf(@Nonnull Component c) { return childrenFinder.childrenOf(c); } /** *

* Properly disposes of the given {@code Window}, making it and its native resources available for garbage collection. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT.) Client code must call this method from the EDT. *

* * @param w the {@code Window} to dispose. */ @Override @RunsInCurrentThread public void dispose(@Nonnull Window w) { if (isAppletViewer(w)) { return; } for (Window owned : w.getOwnedWindows()) { if (owned != null) { dispose(owned); } } if (isSharedInvisibleFrame(w)) { return; } w.dispose(); } @Nonnull ParentFinder parentFinder() { return parentFinder; } @Nonnull ChildrenFinder childrenFinder() { return childrenFinder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy