Update of /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16019/src/net/sourceforge/bprocessor/kernel/notification
Modified Files:
Notification.java
Log Message:
Added keys for edge and vertex
Index: Notification.java
===================================================================
RCS file: /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification/Notification.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Notification.java 11 Jul 2005 11:20:06 -0000 1.3
--- Notification.java 18 Jul 2005 09:16:56 -0000 1.4
***************
*** 91,94 ****
--- 91,124 ----
public static final String SURFACE_MODIFIED = "surface.modified";
+ /** Edge created */
+ public static final String EDGE_CREATED = "edge.created";
+
+ /** Edge deleted */
+ public static final String EDGE_DELETED = "edge.deleted";
+
+ /** Edge renamed */
+ public static final String EDGE_RENAMED = "edge.renamed";
+
+ /** Edge selected */
+ public static final String EDGE_SELECTED = "edge.selected";
+
+ /** Edge modified */
+ public static final String EDGE_MODIFIED = "edge.modified";
+
+ /** Vertex created */
+ public static final String VERTEX_CREATED = "vertex.created";
+
+ /** Vertex deleted */
+ public static final String VERTEX_DELETED = "vertex.deleted";
+
+ /** Vertex renamed */
+ public static final String VERTEX_RENAMED = "vertex.renamed";
+
+ /** Vertex selected */
+ public static final String VERTEX_SELECTED = "vertex.selected";
+
+ /** Vertex modified */
+ public static final String VERTEX_MODIFIED = "vertex.modified";
+
/** The type */
private String type;
|