package votorola.a.count; /** A source of counts. */ public interface CountSource { // - C o u n t - S o u r c e ---------------------------------------------------------- /** Returns the count for the specified poll, or null if there is none. */ public Count count( String pollName ); }