:: com :: sun :: star :: ucb ::

constants group ContentAction

Constants
INSERTED A content was inserted into a folder content (i.e., while updating the folder).  
REMOVED A content was removed from a folder content, but not physically destroyed (i.e., due to rules just applied to the folder).  
DELETED A content was physically destroyed.  
EXCHANGED This Action indicates that a content has changed its identity (i.e. after renaming a file system folder).  
SEARCH_MATCHED [ DEPRECATED ]
This is obsolete and should no longer be used.  
Constants' Details
INSERTED
const long INSERTED = 0;
Description
A content was inserted into a folder content (i.e., while updating the folder).

This action must be notified at the listeners of the folder content.

REMOVED
const long REMOVED = 1;
Description
A content was removed from a folder content, but not physically destroyed (i.e., due to rules just applied to the folder).

This action must be notified at the listeners of the folder content.

DELETED
const long DELETED = 2;
Description
A content was physically destroyed.

Events containing this action may be generated at any time. So a content event listener should be prepared to get notified the "death" of the related content!

This action must be notified at the listeners of the deleted content.

EXCHANGED
const long EXCHANGED = 4;
Description
This Action indicates that a content has changed its identity (i.e. after renaming a file system folder).

This action must be notified at the listeners of the exchanged content.

SEARCH_MATCHED
const long SEARCH_MATCHED = 128;
Usage Restrictions
deprecated
Description
This is obsolete and should no longer be used.
Top of Page