Package tray.balloon

Examples of tray.balloon.Balloon


  @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);
  }
View Full Code Here

TOP

Related Classes of tray.balloon.Balloon

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.