All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.model.status.FeedbackConfidenceStatus Maven / Gradle / Ivy

There is a newer version: 2.0.26
Show newest version
package org.bidib.wizard.model.status;

public class FeedbackConfidenceStatus {

    private int invalid;

    private int freeze;

    private int noSignal;

    public FeedbackConfidenceStatus(int invalid, int freeze, int noSignal) {
        this.invalid = invalid;
        this.freeze = freeze;
        this.noSignal = noSignal;
    }

    public FeedbackConfidenceStatus(final FeedbackConfidenceStatus source) {
        this.invalid = source.invalid;
        this.freeze = source.freeze;
        this.noSignal = source.noSignal;
    }

    /**
     * @return the invalid
     */
    public int getInvalid() {
        return invalid;
    }

    /**
     * @param invalid
     *            the invalid to set
     */
    public void setInvalid(int invalid) {
        this.invalid = invalid;
    }

    /**
     * @return the freeze
     */
    public int getFreeze() {
        return freeze;
    }

    /**
     * @param freeze
     *            the freeze to set
     */
    public void setFreeze(int freeze) {
        this.freeze = freeze;
    }

    /**
     * @return the noSignal
     */
    public int getNoSignal() {
        return noSignal;
    }

    /**
     * @param noSignal
     *            the noSignal to set
     */
    public void setNoSignal(int noSignal) {
        this.noSignal = noSignal;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy