Uses of Interface
org.eclipse.swtbot.swt.finder.waits.ICondition

Packages that use ICondition
org.eclipse.swtbot.eclipse.finder.waits   
org.eclipse.swtbot.swt.finder.waits   
 

Uses of ICondition in org.eclipse.swtbot.eclipse.finder.waits
 

Classes in org.eclipse.swtbot.eclipse.finder.waits that implement ICondition
 class WaitForEditor
          Waits until an editor that matches the specified matcher appears.
 class WaitForView
          Waits until a view part that matches the specified matcher appears.
 

Uses of ICondition in org.eclipse.swtbot.swt.finder.waits
 

Classes in org.eclipse.swtbot.swt.finder.waits that implement ICondition
 class DefaultCondition
          This is an abstract implementation of the condition interface to simplify the implementing classes.
 class WaitForObjectCondition<T>
          Waits for objects to appear until the matcher evaluates to true.
 

Methods in org.eclipse.swtbot.swt.finder.waits that return ICondition
static ICondition Conditions.shellCloses(SWTBotShell shell)
          Gets the condition for checking if shells have closed.
static ICondition Conditions.shellIsActive(String shellText)
          Gets the condition for checking if an awaited shell is visible and has focus
static ICondition Conditions.tableHasRows(SWTBotTable table, int rowCount)
          Gets the condition for checking tables have the proper number of rows.
static ICondition Conditions.treeHasRows(SWTBotTree tree, int rowCount)
          Gets the condition for checking trees have the proper number of rows.
static ICondition Conditions.widgetIsEnabled(AbstractSWTBot<? extends Widget> widget)