Update of /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21840/src/net/sourceforge/bprocessor/kernel/notification
Modified Files:
Notification.java
Log Message:
Replaced created/remove/modified from Notifier with changed/update
Index: Notification.java
===================================================================
RCS file: /cvsroot/bprocessor/kernel/src/net/sourceforge/bprocessor/kernel/notification/Notification.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Notification.java 28 Jul 2005 10:15:09 -0000 1.5
--- Notification.java 4 Jan 2006 14:29:59 -0000 1.6
***************
*** 16,25 ****
private static Logger log = Logger.getLogger(Notification.class);
- /** Functional space created */
- public static final String FUNCTIONAL_SPACE_CREATED = "functionalspace.created";
-
- /** Functional space deleted */
- public static final String FUNCTIONAL_SPACE_DELETED = "functionalspace.deleted";
-
/** Functional space selected */
public static final String FUNCTIONAL_SPACE_SELECTED = "functionalspace.selected";
--- 16,19 ----
***************
*** 28,40 ****
public static final String FUNCTIONAL_SPACE_DESELECTED = "functionalspace.deselected";
- /** Functional space modified */
- public static final String FUNCTIONAL_SPACE_MODIFIED = "functionalspace.modified";
-
- /** Construction space created */
- public static final String CONSTRUCTION_SPACE_CREATED = "constructionspace.created";
-
- /** Construction space deleted */
- public static final String CONSTRUCTION_SPACE_DELETED = "constructionspace.deleted";
-
/** Construction space selected */
public static final String CONSTRUCTION_SPACE_SELECTED = "constructionspace.selected";
--- 22,25 ----
***************
*** 43,55 ****
public static final String CONSTRUCTION_SPACE_DESELECTED = "constructionspace.deselected";
- /** Construction space modified */
- 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 selected */
public static final String ELEMENT_SELECTED = "element.selected";
--- 28,31 ----
***************
*** 58,70 ****
public static final String ELEMENT_DESELECTED = "element.deselected";
- /** 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 selected */
public static final String PART_SELECTED = "part.selected";
--- 34,37 ----
***************
*** 73,85 ****
public static final String PART_DESELECTED = "part.deselected";
- /** Part modified */
- public static final String PART_MODIFIED = "part.modified";
-
- /** Surface created */
- public static final String SURFACE_CREATED = "surface.created";
-
- /** Surface deleted */
- public static final String SURFACE_DELETED = "surface.deleted";
-
/** Surface selected */
public static final String SURFACE_SELECTED = "surface.selected";
--- 40,43 ----
***************
*** 88,100 ****
public static final String SURFACE_DESELECTED = "surface.deselected";
- /** Surface modified */
- 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 selected */
public static final String EDGE_SELECTED = "edge.selected";
--- 46,49 ----
***************
*** 103,115 ****
public static final String EDGE_DESELECTED = "edge.deselected";
- /** 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 selected */
public static final String VERTEX_SELECTED = "vertex.selected";
--- 52,55 ----
***************
*** 118,124 ****
public static final String VERTEX_DESELECTED = "vertex.deselected";
- /** Vertex modified */
- public static final String VERTEX_MODIFIED = "vertex.modified";
-
/** The type */
private String type;
--- 58,61 ----
|