moved counted object to utils

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@93 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
asivache 2009-03-18 21:54:04 +00:00
parent e09af2ef70
commit 875272e5c5
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package org.broadinstitute.sting.indels;
package org.broadinstitute.sting.utils;
/** Utility class that makes working with counted objects slightly easier (and faster).
* Consider a "generic" counter representation as Map<Object,Integer>: updating the counter would require

View File

@ -1,4 +1,6 @@
package org.broadinstitute.sting.indels;
package org.broadinstitute.sting.utils;
import org.broadinstitute.sting.utils.CountedObject;
/** Support class for counted objects. This comparator is an adapter: it is initialized with an arbitrary
* comparator for objects of type T and can be used to directly compare counted objects of type CountedObject<T>