1 2 3 4 5
public class SystemTrayIsSupported { public static void main(String[] args) { System.exit(java.awt.SystemTray.isSupported() ? 0 : 1); } }