1 package org.unicode.cldr.util; 2 3 public class VoterProgress { 4 5 /** 6 * The number of paths for which this user is expected to vote 7 * (in this locale, limited by the coverage level) 8 */ 9 private int votablePathCount = 0; 10 11 /** 12 * The number of paths for which this user already has voted 13 * (in this locale, limited by the coverage level) 14 */ 15 private int votedPathCount = 0; 16 getVotablePathCount()17 public int getVotablePathCount() { 18 return votablePathCount; 19 } 20 getVotedPathCount()21 public int getVotedPathCount() { 22 return votedPathCount; 23 } 24 incrementVotablePathCount()25 public void incrementVotablePathCount() { 26 votablePathCount++; 27 } 28 incrementVotedPathCount()29 public void incrementVotedPathCount() { 30 votedPathCount++; 31 } 32 } 33