WithItem<TrayItem> itemMatcher = WithItem.withItem(matcher);
WaitForObjectCondition<?> waitForWidget = waitForWidget(itemMatcher, systemTray());
waitUntilWidgetAppears(waitForWidget);
List<SWTBotTrayItem> items = new ArrayList<SWTBotTrayItem>();
for (TrayItem item : itemMatcher.getAllMatches())
items.add(new SWTBotTrayItem(item));
return items;
}