Author: kono
Date: 2011-03-04 15:28:02 -0800 (Fri, 04 Mar 2011)
New Revision: 24314

Modified:
   
core3/presentation-api/trunk/src/main/java/org/cytoscape/view/presentation/property/TwoDVisualLexicon.java
Log:
Some range implementations had been changed to private/protected since they 
should not be used outside of this package.

Modified: 
core3/presentation-api/trunk/src/main/java/org/cytoscape/view/presentation/property/TwoDVisualLexicon.java
===================================================================
--- 
core3/presentation-api/trunk/src/main/java/org/cytoscape/view/presentation/property/TwoDVisualLexicon.java
  2011-03-04 23:24:12 UTC (rev 24313)
+++ 
core3/presentation-api/trunk/src/main/java/org/cytoscape/view/presentation/property/TwoDVisualLexicon.java
  2011-03-04 23:28:02 UTC (rev 24314)
@@ -64,7 +64,7 @@
        
        private static final Set<String> STRING_SET = new HashSet<String>();
        // This will be used to for String VP which accepts any string values.
-       private static final Range<String> ARBITRARY_STRING_RANGE = new 
DiscreteRangeImpl<String>(String.class, STRING_SET);
+       protected static final Range<String> ARBITRARY_STRING_RANGE = new 
DiscreteRangeImpl<String>(String.class, STRING_SET);
        
        protected static final Range<Double> ARBITRARY_DOUBLE_RANGE = new 
ContinuousRangeImpl<Double>(Double.class, Double.NEGATIVE_INFINITY, 
Double.POSITIVE_INFINITY);
        protected static final Range<Double> NONE_ZERO_POSITIVE_DOUBLE_RANGE = 
new ContinuousRangeImpl<Double>(Double.class, 0d, Double.POSITIVE_INFINITY, 
false, true);

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