Package tray

Source Code of tray.SystemTrayProvider

package tray;

import tray.java.JavaTrayAdapter;
import tray.linux.LinuxNativeTrayAdapter;

public class SystemTrayProvider {

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

Related Classes of tray.SystemTrayProvider

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.