@Override
public void nativeDisplayMessage(int nativeId, final String caption,
final String text, final MessageType messageType) {
Point loc = nativeGetIconLocation0(nativeId);
final Balloon balloon = new Balloon();
balloon.setBounds(loc.x + 12, loc.y + 12, 1, 1);
balloon.display(caption, text, messageType);
}