本文整理匯總了Java中org.netbeans.jemmy.DialogWaiter.setOutput方法的典型用法代碼示例。如果您正苦於以下問題:Java DialogWaiter.setOutput方法的具體用法?Java DialogWaiter.setOutput怎麽用?Java DialogWaiter.setOutput使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.netbeans.jemmy.DialogWaiter
的用法示例。
在下文中一共展示了DialogWaiter.setOutput方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: waitDialog
import org.netbeans.jemmy.DialogWaiter; //導入方法依賴的package包/類
/**
* A method to be used from subclasses. Uses timeouts and output passed as
* parameters during the waiting.
*
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @param timeouts timeouts to be used during the waiting.
* @param output an output to be used during the waiting.
* @return Component instance or null if component was not found.
*/
protected static Dialog waitDialog(ComponentChooser chooser, int index,
Timeouts timeouts, TestOut output) {
try {
DialogWaiter waiter = new DialogWaiter();
waiter.setTimeouts(timeouts);
waiter.setOutput(output);
return waiter.waitDialog(new DialogFinder(chooser), index);
} catch (InterruptedException e) {
output.printStackTrace(e);
return null;
}
}
示例2: waitJDialog
import org.netbeans.jemmy.DialogWaiter; //導入方法依賴的package包/類
/**
* A method to be used from subclasses. Uses timeouts and output passed as
* parameters during the waiting.
*
* @param chooser org.netbeans.jemmy.ComponentChooser implementation.
* @param index Ordinal component index.
* @param timeouts timeouts to be used during the waiting.
* @param output an output to be used during the waiting.
* @return Component instance or null if component was not found.
*/
protected static JDialog waitJDialog(ComponentChooser chooser, int index,
Timeouts timeouts, TestOut output) {
try {
DialogWaiter waiter = new DialogWaiter();
waiter.setTimeouts(timeouts);
waiter.setOutput(output);
return ((JDialog) waiter.
waitDialog(new JDialogFinder(chooser), index));
} catch (InterruptedException e) {
output.printStackTrace(e);
return null;
}
}