use of org.jboss.tools.hibernate.reddeer.condition.ConfigrationsAreLoaded in project jbosstools-hibernate by jbosstools.
the class KnownConfigurationsView method getConsoleConfigurations.
public List<TreeItem> getConsoleConfigurations() {
Tree tree = null;
try {
tree = new DefaultTree(this);
} catch (RedDeerException e) {
return null;
}
new WaitUntil(new ConfigrationsAreLoaded(tree));
return tree.getItems();
}
Aggregations