Package org.netbeans.jemmy
Class Waiter
- java.lang.Object
-
- org.netbeans.jemmy.Waiter
-
- All Implemented Interfaces:
Outputable,Timeoutable,Waitable
- Direct Known Subclasses:
WindowWaiter
public class Waiter extends java.lang.Object implements Waitable, Timeoutable, Outputable
Waits for something defined by Waitable interface to be happened.
Timeouts used:
Waiter.TimeDelta - time delta to check actionProduced result.
Waiter.WaitingTime - maximal waiting time
Waiter.AfterWaitingTime - time to sleep after waiting has been finished.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectactionProduced(java.lang.Object obj)Checks if wait criteria have been met.protected java.lang.StringgetActionProducedMessage(long timeSpent, java.lang.Object result)Returns message to be printed when waiting has been successfully finished.java.lang.StringgetDescription()Returns description.protected java.lang.StringgetGoldenActionProducedMessage()Returns message to be printed int golden output when waiting has been successfully finished.protected java.lang.StringgetGoldenTimeoutExpiredMessage()Returns message to be printed int golden output when waiting timeout has been expired.protected java.lang.StringgetGoldenWaitingStartedMessage()Returns message to be printed int golden output before waiting start.TestOutgetOutput()Returns print output streams or writers.protected java.lang.StringgetTimeoutExpiredMessage(long timeSpent)Returns message to be printed when waiting timeout has been expired.TimeoutsgetTimeouts()Return current timeouts.protected java.lang.StringgetWaitingStartedMessage()Returns message to be printed before waiting start.voidsetOutput(TestOut out)Defines print output streams or writers.voidsetTimeouts(Timeouts timeouts)Defines current timeouts.protected longtimeFromStart()Returns time from waiting start.java.lang.ObjectwaitAction(java.lang.Object waitableObject)Waits for not null result of actionProduced method of Waitable implementation passed into constructor.
-
-
-
Constructor Detail
-
Waiter
public Waiter(Waitable w)
Constructor.- Parameters:
w- Waitable object defining waiting criteria.
-
Waiter
protected Waiter()
Can be used from subclass.
-
-
Method Detail
-
setTimeouts
public void setTimeouts(Timeouts timeouts)
Defines current timeouts.- Specified by:
setTimeoutsin interfaceTimeoutable- Parameters:
timeouts- A collection of timeout assignments.- See Also:
Timeoutable,Timeouts,getTimeouts()
-
getTimeouts
public Timeouts getTimeouts()
Return current timeouts.- Specified by:
getTimeoutsin interfaceTimeoutable- Returns:
- the collection of current timeout assignments.
- See Also:
Timeoutable,Timeouts,setTimeouts(org.netbeans.jemmy.Timeouts)
-
setOutput
public void setOutput(TestOut out)
Defines print output streams or writers.- Specified by:
setOutputin interfaceOutputable- Parameters:
out- Identify the streams or writers used for print output.- See Also:
Outputable,TestOut,getOutput()
-
getOutput
public TestOut getOutput()
Returns print output streams or writers.- Specified by:
getOutputin interfaceOutputable- Returns:
- an object that contains references to objects for printing to output and err streams.
- See Also:
Outputable,TestOut,setOutput(org.netbeans.jemmy.TestOut)
-
waitAction
public java.lang.Object waitAction(java.lang.Object waitableObject) throws java.lang.InterruptedExceptionWaits for not null result of actionProduced method of Waitable implementation passed into constructor.- Parameters:
waitableObject- Object to be passed into actionProduced method.- Returns:
- non null result of action.
- Throws:
TimeoutExpiredExceptionjava.lang.InterruptedException
-
actionProduced
public java.lang.Object actionProduced(java.lang.Object obj)
Description copied from interface:WaitableChecks if wait criteria have been met.- Specified by:
actionProducedin interfaceWaitable- Parameters:
obj-- Returns:
- null is criteria have not been met.
- See Also:
Waitable
-
getDescription
public java.lang.String getDescription()
Description copied from interface:WaitableReturns description.- Specified by:
getDescriptionin interfaceWaitable- Returns:
- a description of the wait criteria.
- See Also:
Waitable
-
getWaitingStartedMessage
protected java.lang.String getWaitingStartedMessage()
Returns message to be printed before waiting start.- Returns:
- a message.
-
getTimeoutExpiredMessage
protected java.lang.String getTimeoutExpiredMessage(long timeSpent)
Returns message to be printed when waiting timeout has been expired.- Parameters:
timeSpent- time from waiting start (milliseconds)- Returns:
- a message.
-
getActionProducedMessage
protected java.lang.String getActionProducedMessage(long timeSpent, java.lang.Object result)Returns message to be printed when waiting has been successfully finished.- Parameters:
timeSpent- time from waiting start (milliseconds)result- result of Waitable.actionproduced method.- Returns:
- a message.
-
getGoldenWaitingStartedMessage
protected java.lang.String getGoldenWaitingStartedMessage()
Returns message to be printed int golden output before waiting start.- Returns:
- a message.
-
getGoldenTimeoutExpiredMessage
protected java.lang.String getGoldenTimeoutExpiredMessage()
Returns message to be printed int golden output when waiting timeout has been expired.- Returns:
- a message.
-
getGoldenActionProducedMessage
protected java.lang.String getGoldenActionProducedMessage()
Returns message to be printed int golden output when waiting has been successfully finished.- Returns:
- a message.
-
timeFromStart
protected long timeFromStart()
Returns time from waiting start.- Returns:
- Time spent for waiting already.
-
-