These Bean Classes have been added to experimental as internal classes in BeanListUnivariateImplTest
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a40de0d92f
commit
2e9819075f
|
@ -1,49 +0,0 @@
|
|||
/*
|
||||
* Copyright 2003-2004 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.math.beans;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.8 $ $Date: 2004/02/21 21:35:16 $
|
||||
*/
|
||||
public class Patient {
|
||||
|
||||
private VitalStats vitalStats;
|
||||
private Integer age;
|
||||
|
||||
public Patient() {
|
||||
}
|
||||
|
||||
public Patient(VitalStats vitalStats, Integer age) {
|
||||
setVitalStats( vitalStats );
|
||||
setAge( age );
|
||||
}
|
||||
|
||||
public VitalStats getVitalStats() {
|
||||
return( vitalStats );
|
||||
}
|
||||
|
||||
public void setVitalStats(VitalStats vitalStats) {
|
||||
this.vitalStats = vitalStats;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
/*
|
||||
* Copyright 2003-2004 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.math.beans;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.8 $ $Date: 2004/02/21 21:35:16 $
|
||||
*/
|
||||
public class VitalStats {
|
||||
|
||||
private Double heartrate;
|
||||
private Double temperature;
|
||||
|
||||
public VitalStats() {
|
||||
}
|
||||
|
||||
public VitalStats(Double heartrate, Double temperature) {
|
||||
setHeartRate( heartrate );
|
||||
setTemperature( temperature );
|
||||
}
|
||||
|
||||
public Double getHeartRate() {
|
||||
return heartrate;
|
||||
}
|
||||
|
||||
public void setHeartRate(Double heartrate) {
|
||||
this.heartrate = heartrate;
|
||||
}
|
||||
|
||||
public Double getTemperature() {
|
||||
return temperature;
|
||||
}
|
||||
|
||||
public void setTemperature(Double temperature) {
|
||||
this.temperature = temperature;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue