Author: ruschein
Date: 2010-08-03 15:01:55 -0700 (Tue, 03 Aug 2010)
New Revision: 21158

Modified:
   
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/AbstractGraphPartition.java
   
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/EdgeWeighter.java
Log:
Updated to track changes in Tunable.

Modified: 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/AbstractGraphPartition.java
===================================================================
--- 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/AbstractGraphPartition.java
  2010-08-03 22:01:39 UTC (rev 21157)
+++ 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/AbstractGraphPartition.java
  2010-08-03 22:01:55 UTC (rev 21158)
@@ -17,7 +17,7 @@
        double incr = 100;
        protected List <LayoutPartition> partitionList = null;
        protected EdgeWeighter edgeWeighter = null;
-       @Tunable(description="Don't partition graph before layout", 
group="Standard settings")
+       @Tunable(description="Don't partition graph before layout", 
groups="Standard settings")
        public boolean singlePartition = false;
 
        // Information for taskMonitor

Modified: 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/EdgeWeighter.java
===================================================================
--- 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/EdgeWeighter.java
    2010-08-03 22:01:39 UTC (rev 21157)
+++ 
core3/layout-api/trunk/src/main/java/org/cytoscape/view/layout/EdgeWeighter.java
    2010-08-03 22:01:55 UTC (rev 21158)
@@ -52,11 +52,11 @@
  * about how to interpret weights in an weighted layout.
  */
 public class EdgeWeighter {
-       @Tunable(description="How to interpret weight values", group={"Edge 
Weight Settings"})
+       @Tunable(description="How to interpret weight values", groups={"Edge 
Weight Settings"})
        public WeightTypes type = WeightTypes.GUESS;
-       @Tunable(description="The minimum edge weight to consider", 
group={"Edge Weight Settings"})
+       @Tunable(description="The minimum edge weight to consider", 
groups={"Edge Weight Settings"})
        public double minWeightCutoff = 0;
-       @Tunable(description="The maximum edge weight to consider", 
group={"Edge Weight Settings"})
+       @Tunable(description="The maximum edge weight to consider", 
groups={"Edge Weight Settings"})
        public double maxWeightCutoff = Double.MAX_VALUE;
        final static double EPSILON = .001;
 
@@ -78,7 +78,7 @@
        // These are just here for efficiency reasons
        double normalFactor = Double.MAX_VALUE;
 
-       @Tunable(description="The edge attribute that contains the weights", 
group={"Edge Weight Settings"})
+       @Tunable(description="The edge attribute that contains the weights", 
groups={"Edge Weight Settings"})
        public String weightAttribute = null;
 
        static WeightTypes[] weightChoices = {WeightTypes.GUESS,

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