Lines Matching refs:notification

34  * The filtering is performed on the notification type attribute.
36 * Manages a list of enabled notification types.
37 * A method allows users to enable/disable as many notification types as required.
39 * Then, before sending a notification to a listener registered with a filter,
40 * the notification broadcaster compares this notification type with all notification types
41 * enabled by the filter. The notification will be sent to the listener
42 * only if its filter enables this notification type.
64 * @serial {@link Vector} that contains the enabled notification types.
71 * Invoked before sending the specified notification to the listener.
72 * <BR>This filter compares the type of the specified notification with each enabled type.
73 * If the notification type matches one of the enabled types,
74 * the notification should be sent to the listener and this method returns <CODE>true</CODE>.
76 * @param notification The notification to be sent.
77 * @return <CODE>true</CODE> if the notification should be sent to the listener, <CODE>false</CODE> otherwise.
79 public synchronized boolean isNotificationEnabled(Notification notification) {
81 String type = notification.getType();
102 * <BR>If the specified prefix is already in the list of enabled notification types,
119 * will no match any notification type.
137 * <BR>If the specified prefix is not in the list of enabled notification types,
147 * Disables all notification types.
155 * Gets all the enabled notification types for this filter.
157 * @return The list containing all the enabled notification types.