All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.platform.Windows Maven / Gradle / Ivy

Go to download

JCommunique is a free, open-source desktop notification library. It offers a range of features with a simple-to-use API. This is a maven repack, code is unchanged

The newest version!
package com.platform;

public class Windows implements OperatingSystem {
	@Override
	public boolean isSupported(String feature) {
		switch (feature) {
		case "fade":
			return false;
		default:
			return true;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy