public interface FolderListener
Modifier and Type | Method and Description |
---|---|
void |
folderChanged(Collection<Entry> added,
Collection<String> removed,
boolean full)
Provide changes to the listener
|
void folderChanged(Collection<Entry> added, Collection<String> removed, boolean full)
If either no items were added or removed the corresponding list must still be not null. The lists may not be altered by the listener implementations and may by unmodifiable.
added
- the folder entries that were addedremoved
- the folder entries that where removedfull
- true
if this is not a change but a full
transmission, in this case the removed
parameter
must be empty or null
.