Author: ruschein
Date: 2010-02-12 13:55:30 -0800 (Fri, 12 Feb 2010)
New Revision: 19325

Modified:
   
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutFRAlgorithm.java
   
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutKKAlgorithm.java
Log:
Fixed inconsistent menu label capitalisation.

Modified: 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutFRAlgorithm.java
===================================================================
--- 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutFRAlgorithm.java
       2010-02-12 21:44:38 UTC (rev 19324)
+++ 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutFRAlgorithm.java
       2010-02-12 21:55:30 UTC (rev 19325)
@@ -51,7 +51,7 @@
  * algorithm.
  * <p>
  * The basic layout algorithm follows from the paper:
- * <em>"Graph Drawing by Force-directed Placement"</em>
+ * <em>"Graph Drawing by Force-Directed Placement"</em>
  * by Thomas M.J. Fruchterman and Edward M. Reingold.
  * <p>
  * The algorithm has been modified to take into account edge weights, which
@@ -176,7 +176,7 @@
         * @return the algorithm name
         */
        public String getName() {
-               return "fruchterman-rheingold";
+               return "Fruchterman-Rheingold";
        }
 
        /**
@@ -188,10 +188,10 @@
         */
        public String toString() {
                if (supportWeights)
-                       return "Edge-weighted Force-directed (BioLayout)";
+                       return "Edge-weighted Force-Directed (BioLayout)";
                else
 
-                       return "Force-directed (BioLayout)";
+                       return "Force-Directed (BioLayout)";
        }
 
        /**

Modified: 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutKKAlgorithm.java
===================================================================
--- 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutKKAlgorithm.java
       2010-02-12 21:44:38 UTC (rev 19324)
+++ 
coreplugins/trunk/AutomaticLayout/src/csplugins/layout/algorithms/bioLayout/BioLayoutKKAlgorithm.java
       2010-02-12 21:55:30 UTC (rev 19325)
@@ -166,10 +166,10 @@
         */
        public String getName() {
                if (supportWeights)
-                       return "kamada-kawai-noweight";
+                       return "Kamada-Kawai-Noweight";
                else
 
-                       return "kamada-kawai";
+                       return "Kamada-Kawai";
        }
 
        /**
@@ -179,7 +179,7 @@
         */
        public String toString() {
                if (supportWeights)
-                       return "Edge-weighted Spring Embedded";
+                       return "Edge-Weighted Spring Embedded";
                else
 
                        return "Spring Embedded";

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