Sample.java
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
package com.mycim.valueobject.edcspc;
import java.io.Serializable;
import java.util.Collection;
public class Sample implements Serializable {
private Long dcolRrn;
private Integer dcolSequence;
private Integer sampleSequence;
private Long unitRrn;
private String sampleId;
private Double sampleValue;
private Double sumValue;
private Double averageValue;
private Double rangeValue;
private Double minimumValue;
private Double maximumValue;
private Double standardDeviationValue;
private Double customValue;
private String comments;
private Collection Readings;
private Double centValue;
private String recipeId;
public Double getAverageValue() {
return averageValue;
}
public void setAverageValue(Double averageValue) {
this.averageValue = averageValue;
}
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
public Double getCustomValue() {
return customValue;
}
public void setCustomValue(Double customValue) {
this.customValue = customValue;
}
public Long getDcolRrn() {
return dcolRrn;
}
public void setDcolRrn(Long dcolRrn) {
this.dcolRrn = dcolRrn;
}
public Integer getDcolSequence() {
return dcolSequence;
}
public void setDcolSequence(Integer dcolSequence) {
this.dcolSequence = dcolSequence;
}
public Double getMaximumValue() {
return maximumValue;
}
public void setMaximumValue(Double maximumValue) {
this.maximumValue = maximumValue;
}
public Double getMinimumValue() {
return minimumValue;
}
public void setMinimumValue(Double minimumValue) {
this.minimumValue = minimumValue;
}
public Double getRangeValue() {
return rangeValue;
}
public void setRangeValue(Double rangeValue) {
this.rangeValue = rangeValue;
}
public String getSampleId() {
return sampleId;
}
public void setSampleId(String sampleId) {
this.sampleId = sampleId;
}
public Integer getSampleSequence() {
return sampleSequence;
}
public void setSampleSequence(Integer sampleSequence) {
this.sampleSequence = sampleSequence;
}
public Double getSampleValue() {
return sampleValue;
}
public void setSampleValue(Double sampleValue) {
this.sampleValue = sampleValue;
}
public Double getStandardDeviationValue() {
return standardDeviationValue;
}
public void setStandardDeviationValue(Double standardDeviationValue) {
this.standardDeviationValue = standardDeviationValue;
}
public Double getSumValue() {
return sumValue;
}
public void setSumValue(Double sumValue) {
this.sumValue = sumValue;
}
public Long getUnitRrn() {
return unitRrn;
}
public void setUnitRrn(Long unitRrn) {
this.unitRrn = unitRrn;
}
public Collection getReadings() {
return Readings;
}
public void setReadings(Collection Readings) {
this.Readings = Readings;
}
public String toString() {
String s = super.toString() + "[";
s = s + " dcolRrn:" + this.getDcolRrn();
s = s + " dcolSequence:" + this.getDcolSequence();
s = s + " sampleSequence:" + this.getSampleSequence();
s = s + " unitRrn:" + this.getUnitRrn();
s = s + " sampleId:" + this.getSampleId();
s = s + " sampleValue:" + this.getSampleValue();
s = s + " sumValue:" + this.getSumValue();
s = s + " averageValue:" + this.getAverageValue();
s = s + " rangeValue:" + this.getRangeValue();
s = s + " minimumValue:" + this.getMinimumValue();
s = s + " maximumValue:" + this.getMaximumValue();
s = s + " standardDeviationValue:" + this.getStandardDeviationValue();
s = s + " customValue:" + this.getCustomValue();
s = s + " comments:" + this.getComments();
s = s + " Readings:" + this.Readings;
s = s + "]";
return s;
}
public Double getCentValue() {
return centValue;
}
public void setCentValue(Double centValue) {
this.centValue = centValue;
}
public String getRecipeId() {
return recipeId;
}
public void setRecipeId(String recipeId) {
this.recipeId = recipeId;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/