org.bidib.wizard.model.status.FeedbackConfidenceStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-model Show documentation
Show all versions of bidibwizard-model Show documentation
jBiDiB BiDiB Wizard Model POM
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;
}
}