This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
PF3/hw2/Ex2/src/VoteCounter.java

5 lines
101 B
Java

public interface VoteCounter {
void addVote(Integer id);
Integer getVoteCount(Integer id);
}