Package tray.balloon

Examples of tray.balloon.Balloon.display()


  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);
  }

  @Override
  public void nativeSetImage(int nativeId, String file) {
    this.nativeSetImage0(nativeId, file);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.