Author: kono
Date: 2010-02-04 10:43:44 -0800 (Thu, 04 Feb 2010)
New Revision: 19178

Modified:
   cytoscape/trunk/src/cytoscape/view/NetworkPanel.java
Log:
Big NetworkPanel class is refactored.  Lots of inner classes are moved to top 
level.

Modified: cytoscape/trunk/src/cytoscape/view/NetworkPanel.java
===================================================================
--- cytoscape/trunk/src/cytoscape/view/NetworkPanel.java        2010-02-04 
18:41:15 UTC (rev 19177)
+++ cytoscape/trunk/src/cytoscape/view/NetworkPanel.java        2010-02-04 
18:43:44 UTC (rev 19178)
@@ -269,8 +269,7 @@
                        showIcons();
                } else {
                        hideIcons();
-               }
-               
+               }       
        }
        
        private TableColumn iconColumn;
@@ -311,7 +310,7 @@
                }
        }
        
-
+       
        /**
         *  DOCUMENT ME!
         *
@@ -358,7 +357,7 @@
                final NetworkTreeNode node = getNetworkNode(network_id);
                if (node == null) return;
                
-               final Enumeration children = node.children();
+               final Enumeration<NetworkTreeNode> children = node.children();
                NetworkTreeNode child = null;
                final List removed_children = new ArrayList();
 

-- 
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