Package tray.linux

Examples of tray.linux.LinuxNativeTrayAdapter


  public static SystemTrayAdapter getSystemTray() {
    String osName = System.getProperty("os.name").toLowerCase();
    if (osName.startsWith("linux")) {
      try {
        return new LinuxNativeTrayAdapter();
      } catch (Exception e) {

      }
    }
    return new JavaTrayAdapter();
View Full Code Here

TOP

Related Classes of tray.linux.LinuxNativeTrayAdapter

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.