com.mmm.cms.homehealth.proto
Interface ScoringPointsIF

All Known Implementing Classes:
ScoringPoints

public interface ScoringPointsIF

Holds points accumulated by the Scoring Model. It is up to the model to determine how many scores should be held within.


Method Summary
 int[] getScores()
          gets the int array of scores.
 void setScoreAt(int idx, int value)
          Sets the scoring equation at a specific position within the array
 void setScores(int[] scores)
          Sets the array of integers representing the scoring equations
 

Method Detail

getScores

int[] getScores()
gets the int array of scores. Should be only as many ints are the scoring provided, i.e. as of version 2.03 clinical/functional has 4, NRS has 1

Returns:
an array of integers representing scoring equations. The number of equations depends on the scoring model that created this.

setScores

void setScores(int[] scores)
Sets the array of integers representing the scoring equations

Parameters:
scores -

setScoreAt

void setScoreAt(int idx,
                int value)
Sets the scoring equation at a specific position within the array

Parameters:
idx -
value -