[Bprocessor-commit] kernel/src/net/sourceforge/bprocessor/kernel/notification Notification.java,1.2,
Status: Pre-Alpha
Brought to you by:
henryml
From: Jesper P. <je...@us...> - 2005-07-11 11:20:21
|
Update of /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8377 Modified Files: Notification.java Log Message: Added keys for element and part Index: Notification.java =================================================================== RCS file: /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification/Notification.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Notification.java 1 Jul 2005 11:29:38 -0000 1.2 --- Notification.java 11 Jul 2005 11:20:06 -0000 1.3 *************** *** 46,49 **** --- 46,79 ---- public static final String CONSTRUCTION_SPACE_MODIFIED = "constructionspace.modified"; + /** Element created */ + public static final String ELEMENT_CREATED = "element.created"; + + /** Element deleted */ + public static final String ELEMENT_DELETED = "element.deleted"; + + /** Element renamed */ + public static final String ELEMENT_RENAMED = "element.renamed"; + + /** Element selected */ + public static final String ELEMENT_SELECTED = "element.selected"; + + /** Element modified */ + public static final String ELEMENT_MODIFIED = "element.modified"; + + /** Part created */ + public static final String PART_CREATED = "part.created"; + + /** Part deleted */ + public static final String PART_DELETED = "part.deleted"; + + /** Part renamed */ + public static final String PART_RENAMED = "part.renamed"; + + /** Part selected */ + public static final String PART_SELECTED = "part.selected"; + + /** Part modified */ + public static final String PART_MODIFIED = "part.modified"; + /** Surface created */ public static final String SURFACE_CREATED = "surface.created"; |