Example #1
0
 public void clearAll() {
   mScoresTotalBiggest.clear();
   mScoresTotalSmallest.clear();
   mScoresLevelBiggest.clear();
   mScoresLevelSmallest.clear();
   mRemovesLevelSmallest.clear();
   mRemovesLevelBiggest.clear();
   mRemovesBiggest.clear();
 }
Example #2
0
 public final Score[] getRemovesLevelSmallest() {
   return mRemovesLevelSmallest.getValues();
 }
Example #3
0
 public boolean addRemovesLevelSmallest(final Score pScore) {
   return mRemovesLevelSmallest.addValue(pScore);
 }
Example #4
0
 public final Score[] getScoresLevelSmallest() {
   return mScoresLevelSmallest.getValues();
 }
Example #5
0
 public boolean addScoreLevelSmallest(final Score pScore) {
   return mScoresLevelSmallest.addValue(pScore);
 }