com.atlassian.jira.webtest.framework.core.condition
Interface Conditions.CombinableCondition

All Superinterfaces:
PollingQuery, TimedCondition
Enclosing class:
Conditions

public static interface Conditions.CombinableCondition
extends TimedCondition

A timed condition that may be logically combined with others, by means of basic logical operations: 'and'/'or'.


Method Summary
 Conditions.CombinableCondition and(TimedCondition other)
          Combine other condition with this condition logical query, such that the resulting condition represents a logical product of this condition and other.
 Conditions.CombinableCondition or(TimedCondition other)
          Combine other condition with this condition logical query, such that the resulting condition represents a logical sum of this condition and other.
 
Methods inherited from interface com.atlassian.jira.webtest.framework.core.condition.TimedCondition
by, byDefaultTimeout, now
 
Methods inherited from interface com.atlassian.jira.webtest.framework.core.PollingQuery
defaultTimeout, interval
 

Method Detail

and

Conditions.CombinableCondition and(TimedCondition other)
Combine other condition with this condition logical query, such that the resulting condition represents a logical product of this condition and other.

Parameters:
other - condition to combine with this one
Returns:
new combined 'and' condition

or

Conditions.CombinableCondition or(TimedCondition other)
Combine other condition with this condition logical query, such that the resulting condition represents a logical sum of this condition and other.

Parameters:
other - condition to combine with this one
Returns:
new combined 'or' condition


Copyright © 2002-2013 Atlassian. All Rights Reserved.