001package votorola.a.count;
002
003
004/** A source of counts.
005  */
006public interface CountSource
007{
008
009
010   // - C o u n t - S o u r c e ----------------------------------------------------------
011
012
013    /** Returns the count for the specified poll, or null if there is none.
014      */
015    public Count count( String pollName );
016
017
018}