Author: mes
Date: 2009-12-01 14:24:53 -0800 (Tue, 01 Dec 2009)
New Revision: 18633
Modified:
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/BasicNetworkEditEventHandler.java
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/PaletteNetworkEditEventHandler.java
Log:
fixed some typos
Modified:
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/BasicNetworkEditEventHandler.java
===================================================================
---
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/BasicNetworkEditEventHandler.java
2009-12-01 22:23:04 UTC (rev 18632)
+++
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/BasicNetworkEditEventHandler.java
2009-12-01 22:24:53 UTC (rev 18633)
@@ -530,13 +530,13 @@
if (_edgeAttributeValue == null){
return null;
}
- // Check if the Edge ID already existed
+ // Check if the Edge ID already exists
CyEdge aEdge = Cytoscape.getCyEdge(source_node,
target_node, cytoscape.data.Semantics.INTERACTION, _edgeAttributeValue, false,
true);
if (aEdge == null){
break;
}
- JOptionPane.showMessageDialog(Cytoscape.getDesktop(),
_edgeAttributeValue + " already existed!", "Duplicated Edge Identifier",
+ JOptionPane.showMessageDialog(Cytoscape.getDesktop(),
_edgeAttributeValue + " already exists!", "Duplicated Edge Identifier",
JOptionPane.WARNING_MESSAGE);
}
@@ -1092,8 +1092,8 @@
}
/**
- * @param edgeAttributeValue
- * The edgeAttributeValue to set.
+ * @param networkAttributeValue
+ * The networkAttributeValue to set.
*/
public void setNetworkAttributeValue(String networkAttributeValue) {
this.networkAttributeValue = networkAttributeValue;
Modified:
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/PaletteNetworkEditEventHandler.java
===================================================================
---
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/PaletteNetworkEditEventHandler.java
2009-12-01 22:23:04 UTC (rev 18632)
+++
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/event/PaletteNetworkEditEventHandler.java
2009-12-01 22:24:53 UTC (rev 18633)
@@ -228,12 +228,12 @@
return null;
}
- // Check if the nodeID already existed
+ // Check if the nodeID already exists
CyNode aNode = Cytoscape.getCyNode(newNodeID);
if (aNode == null){
break;
}
- JOptionPane.showMessageDialog(Cytoscape.getDesktop(),
newNodeID + " already existed!", "Duplicated Identifier",
+ JOptionPane.showMessageDialog(Cytoscape.getDesktop(),
newNodeID + " already exists!", "Duplicated Identifier",
JOptionPane.WARNING_MESSAGE);
}
--
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.