/** 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); }
/** Returns cluster status. */ ClusterStatus getClusterStatus() { final ClusterBrowser b = getBrowser().getClusterBrowser(); if (b == null) { return null; } return b.getClusterStatus(); }
/** 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(); }