From 3a56e3ee3f2f6069de5cf8d2bee81052bbf346e6 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 2 Jul 2019 18:25:30 -0400 Subject: Clean up comments --- src/main/java/bjc/esodata/ThresholdSet.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/main/java/bjc/esodata/ThresholdSet.java') diff --git a/src/main/java/bjc/esodata/ThresholdSet.java b/src/main/java/bjc/esodata/ThresholdSet.java index b6f677e..20b4ceb 100644 --- a/src/main/java/bjc/esodata/ThresholdSet.java +++ b/src/main/java/bjc/esodata/ThresholdSet.java @@ -16,7 +16,7 @@ import java.util.*; * The iterator that this type gives by default is an iterator over all of the values in the set, * not including any of those in the map. * - * @param KeyType The value being counted. + * @param The value being counted. * * @author Ben Culkin */ @@ -71,7 +71,9 @@ public class ThresholdSet { } } + // Set of uniquely stored keys private Set keySet; + // @TODO :CountMap Ben Culkin 6/19/2019 // Replace this with a CountSet or some equivalent concept, whenever that gets written private Map keyMap; @@ -189,7 +191,7 @@ public class ThresholdSet { /** * Get the number of times the set contains a set of given keys. * - * @param key + * @param keys * The keys to look for. * * @return The containment counts for each key. @@ -228,6 +230,8 @@ public class ThresholdSet { return new SetView(); } + // Implementation methods for setView + int setSize() { return keySet.size(); } -- cgit v1.2.3