use of org.ovirt.engine.ui.common.widget.uicommon.vm.IconStatusPanel in project ovirt-engine by oVirt.
the class HostNetworkInterfaceListViewItem method createNeedsSyncStatusPanel.
protected IsWidget createNeedsSyncStatusPanel() {
IconStatusPanel outOfSync = new IconStatusPanel(IconType.CHAIN_BROKEN);
outOfSync.setColor(RED);
WidgetTooltip tooltip = new WidgetTooltip(outOfSync);
tooltip.setText(constants.hostOutOfSync());
return tooltip;
}
use of org.ovirt.engine.ui.common.widget.uicommon.vm.IconStatusPanel in project ovirt-engine by oVirt.
the class HostNetworkInterfaceListViewItem method createDropRateIcon.
protected IsWidget createDropRateIcon() {
WidgetTooltip tooltip = new WidgetTooltip(new IconStatusPanel(IconType.ARROW_DOWN));
tooltip.setText(constants.dropsInterface());
return tooltip;
}
Aggregations