}
}
if ( ThingOfInterest instanceof IPowerChannelState )
{
IPowerChannelState pbs = (IPowerChannelState) ThingOfInterest;
if ( pbs.isActive() && pbs.isPowered() )
currentToolTip.add( WailaText.DeviceOnline.getLocal() );
else if ( pbs.isPowered() )
currentToolTip.add( WailaText.DeviceMissingChannel.getLocal() );
else
currentToolTip.add( WailaText.DeviceOffline.getLocal() );
}