Counter class
n/**
n *Decrement positive count by 1
n */
n
npublic void decrementCount () {
n if (tally > 0)
n tally = tally - 1;
n}
n