Author: mes
Date: 2012-02-14 14:37:33 -0800 (Tue, 14 Feb 2012)
New Revision: 28270

Modified:
   core3/api/trunk/model-api/src/main/java/org/cytoscape/model/CyNetwork.java
Log:
fixes #605 updated the javadoc to fix problems and provide more information

Modified: 
core3/api/trunk/model-api/src/main/java/org/cytoscape/model/CyNetwork.java
===================================================================
--- core3/api/trunk/model-api/src/main/java/org/cytoscape/model/CyNetwork.java  
2012-02-14 22:10:59 UTC (rev 28269)
+++ core3/api/trunk/model-api/src/main/java/org/cytoscape/model/CyNetwork.java  
2012-02-14 22:37:33 UTC (rev 28270)
@@ -269,7 +269,7 @@
        /**
         * A convenience method returns the default attribute table for this 
network.
         * This is equivalent to 
-        * 
<code>cyTableManager.getTableMap(CyNetwork.class,this).get(CyNetwork.DEFAULT_ATTRS);</code>
+        * 
<code>CyNetworkTableManager.getTableMap(this,CyNetwork.class,CyNetwork.DEFAULT_ATTRS);</code>
         * @return The default attribute table for this network.
         */
        CyTable getDefaultNetworkTable();
@@ -277,7 +277,7 @@
        /**
         * A convenience method returns the default attribute table for the 
nodes of this network.
         * This is equivalent to 
-        * 
<code>cyTableManager.getTableMap(CyNode.class,this).get(CyNetwork.DEFAULT_ATTRS);</code>
+        * 
<code>CyNetworkTableManager.getTable(this,CyNode.class,CyNetwork.DEFAULT_ATTRS);</code>
         * @return The default attribute table for the nodes of this network.
         */
        CyTable getDefaultNodeTable();
@@ -285,7 +285,7 @@
        /**
         * A convenience method returns the default attribute table for the 
edges of this network.
         * This is equivalent to 
-        * 
<code>cyTableManager.getTableMap(CyEdge.class,this).get(CyNetwork.DEFAULT_ATTRS);</code>
+        * 
<code>CyNetworkTableManager.getTableMap(this,CyEdge.class,CyNetwork.DEFAULT_ATTRS);</code>
         * @return The default attribute table for the edges of this network.
         */
        CyTable getDefaultEdgeTable();
@@ -293,8 +293,8 @@
        
        /**
         * Returns the row for the specified table name for this object.
-        * A null entry or a
-        * an entry not found in this network will return null.
+        * A null entry or a an entry not found in this network will return 
null,
+        * but otherwise every node or edge in the network is guaranteed to 
have a row.
         * @param entry The entry (node, edge, network) whose row we're looking 
for. 
         * @param tableName the name of the table from which to extract the 
row..
         * @return the row in the table of the specified name for this object. 

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