Result.java [src/java/m/wqm/scorebar] Revision: 43d1f85f9eb218d39f7a0b1d336b604dd66d1830  Date: Mon Jun 01 11:23:09 MDT 2015
package m.wqm.scorebar;

/**
 *
 * @author RUMPAL SIDHU
 */
public class Result {

    int AoAId;
    //For Nitrogen in Ground Water scorebar
    int bar_nleach_mit_score;
    int bar_nleach_threshold;
    //For Nitrogen in Surface Water scorebar
    int bar_nsurf_mit_score;
    int bar_nsurf_threshold;
    //For Phosphorus in Surface Water scorebar
    int bar_psurf_mit_score;
    int bar_psurf_threshold;
    //For Sediment in Surface Water scorebar
    int bar_ssurf_mit_score;
    int bar_ssurf_threshold;
    //For Pesticide in Ground Water - Human scorebar
    int bar_pleach_human_mit_score;
    int bar_pleach_human_threshold;
    //For Pesticide in Ground Water - Fish scorebar
    int bar_pleach_fish_mit_score;
    int bar_pleach_fish_threshold;
    //For Pesticide in Solution Runoff - Human scorebar
    int bar_psorun_human_mit_score;
    int bar_psorun_human_threshold;
    //For Pesticide in Solution Runoff - Fish scorebar
    int bar_psorun_fish_mit_score;
    int bar_psorun_fish_threshold;
    //For Pesticide in Adsorbed Runoff - Human scorebar
    int bar_padrun_human_mit_score;
    int bar_padrun_human_threshold;
    //For Pesticide in Adsorbed Runoff - Fish scorebar
    int bar_padrun_fish_mit_score;
    int bar_padrun_fish_threshold;
    //For Pesticide Drift - Human scorebar
    int bar_pdrift_human_mit_score;
    int bar_pdrift_human_threshold;
    //For Pesticide Drift - Fish scorebar
    int bar_pdrift_fish_mit_score;
    int bar_pdrift_fish_threshold;

    public Result(int AoAId, int bar_nleach_mit_score, int bar_nleach_threshold, int bar_nsurf_mit_score, int bar_nsurf_threshold,
            int bar_psurf_mit_score, int bar_psurf_threshold, int bar_ssurf_mit_score, int bar_ssurf_threshold,
            int bar_pleach_human_mit_score, int bar_pleach_human_threshold, int bar_pleach_fish_mit_score,
            int bar_pleach_fish_threshold, int bar_psorun_human_mit_score, int bar_psorun_human_threshold,
            int bar_psorun_fish_mit_score, int bar_psorun_fish_threshold, int bar_padrun_human_mit_score,
            int bar_padrun_human_threshold, int bar_padrun_fish_mit_score, int bar_padrun_fish_threshold,
            int bar_pdrift_human_mit_score, int bar_pdrift_human_threshold, int bar_pdrift_fish_mit_score,
            int bar_pdrift_fish_threshold) {
        this.AoAId = AoAId;
        this.bar_nleach_mit_score = bar_nleach_mit_score;
        this.bar_nleach_threshold = bar_nleach_threshold;
        this.bar_nsurf_mit_score = bar_nsurf_mit_score;
        this.bar_nsurf_threshold = bar_nsurf_threshold;
        this.bar_psurf_mit_score = bar_psurf_mit_score;
        this.bar_psurf_threshold = bar_psurf_threshold;
        this.bar_ssurf_mit_score = bar_ssurf_mit_score;
        this.bar_ssurf_threshold = bar_ssurf_threshold;
        this.bar_pleach_human_mit_score = bar_pleach_human_mit_score;
        this.bar_pleach_human_threshold = bar_pleach_human_threshold;
        this.bar_pleach_fish_mit_score = bar_pleach_fish_mit_score;
        this.bar_pleach_fish_threshold = bar_pleach_fish_threshold;
        this.bar_psorun_human_mit_score = bar_psorun_human_mit_score;
        this.bar_psorun_human_threshold = bar_psorun_human_threshold;
        this.bar_psorun_fish_mit_score = bar_psorun_fish_mit_score;
        this.bar_psorun_fish_threshold = bar_psorun_fish_threshold;
        this.bar_padrun_human_mit_score = bar_padrun_human_mit_score;
        this.bar_padrun_human_threshold = bar_padrun_human_threshold;
        this.bar_padrun_fish_mit_score = bar_padrun_fish_mit_score;
        this.bar_padrun_fish_threshold = bar_padrun_fish_threshold;
        this.bar_pdrift_human_mit_score = bar_pdrift_human_mit_score;
        this.bar_pdrift_human_threshold = bar_pdrift_human_threshold;
        this.bar_pdrift_fish_mit_score = bar_pdrift_fish_mit_score;
        this.bar_pdrift_fish_threshold = bar_pdrift_fish_threshold;
    }
}