Пример #1
0
 /** Returns whether this host is in stand by. */
 public boolean isStandby(final boolean testOnly) {
   final ClusterBrowser b = getBrowser().getClusterBrowser();
   if (b == null) {
     return false;
   }
   return b.isStandby(host, testOnly);
 }
Пример #2
0
 /** Returns cluster status. */
 ClusterStatus getClusterStatus() {
   final ClusterBrowser b = getBrowser().getClusterBrowser();
   if (b == null) {
     return null;
   }
   return b.getClusterStatus();
 }
Пример #3
0
 /** Returns grahical view if there is any. */
 @Override
 public JPanel getGraphicalView() {
   final ClusterBrowser b = getBrowser().getClusterBrowser();
   if (b == null) {
     return null;
   }
   return b.getServicesInfo().getGraphicalView();
 }