
com.notification.NotificationBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JCommunique Show documentation
Show all versions of JCommunique Show documentation
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.notification;
import com.theme.ThemePackage;
/**
* This interface is implemented for building custom Notifications.
*
* @param
* the type to build
*/
public interface NotificationBuilder {
/**
* Builds a Notification in accordance with the ThemePackage.
*
* @param pack
* the ThemePackage to apply to the Notification
* @param args
* optional additional arguments passed to the NotificationBuilder
* @return the built Notification
*/
public T buildNotification(ThemePackage pack, Object... args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy