Class WindowFinderTemplate<T extends Window>

java.lang.Object
org.fest.swing.finder.ComponentFinderTemplate<T>
org.fest.swing.finder.WindowFinderTemplate<T>
Type Parameters:
T - the type of window this finder can search.
Direct Known Subclasses:
DialogFinder, FrameFinder

public abstract class WindowFinderTemplate<T extends Window> extends ComponentFinderTemplate<T>
Understands a template for Window finders.
  • Constructor Details

    • WindowFinderTemplate

      protected WindowFinderTemplate(String windowName, Class<? extends T> windowType)
      Creates a new WindowFinderTemplate.
      Parameters:
      windowName - the name of the Window to find.
      windowType - the type of the Window to find.
    • WindowFinderTemplate

      protected WindowFinderTemplate(GenericTypeMatcher<? extends T> matcher)
      Creates a new WindowFinderTemplate.
      Parameters:
      matcher - specifies the search criteria to use when looking up a Window.
    • WindowFinderTemplate

      protected WindowFinderTemplate(Class<? extends T> windowType)
      Creates a new WindowFinderTemplate.
      Parameters:
      windowType - the type of the Window to find.
  • Method Details