Author: kono
Date: 2010-10-28 11:05:42 -0700 (Thu, 28 Oct 2010)
New Revision: 22547

Modified:
   
core3/vizmap-api/trunk/src/main/java/org/cytoscape/view/vizmap/events/VisualStyleRemovedEvent.java
Log:
Changed method name for consistency.

Modified: 
core3/vizmap-api/trunk/src/main/java/org/cytoscape/view/vizmap/events/VisualStyleRemovedEvent.java
===================================================================
--- 
core3/vizmap-api/trunk/src/main/java/org/cytoscape/view/vizmap/events/VisualStyleRemovedEvent.java
  2010-10-28 18:05:07 UTC (rev 22546)
+++ 
core3/vizmap-api/trunk/src/main/java/org/cytoscape/view/vizmap/events/VisualStyleRemovedEvent.java
  2010-10-28 18:05:42 UTC (rev 22547)
@@ -44,7 +44,7 @@
  */
 public final class VisualStyleRemovedEvent extends AbstractCyEvent<Object> {
 
-       private final VisualStyle destroyed;
+       private final VisualStyle removedStyle;
 
        /**
         * create an event for the deleted VisualStyle.
@@ -54,7 +54,7 @@
         */
        public VisualStyleRemovedEvent(final Object source, final VisualStyle 
destroyed) {
                super(source, VisualStyleRemovedListener.class);
-               this.destroyed = destroyed;
+               this.removedStyle = destroyed;
        }
 
        
@@ -65,6 +65,6 @@
         * 
         */
        public VisualStyle getRemovedVisualStyle() {
-               return destroyed;
+               return removedStyle;
        }
 }

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to