www.pudn.com > lxc.rar > ThermometerModel.java
import java.util.*;
public class ThermometerModel extends WmvcModel{
private int theTemp;
public int getTemp(){
return theTemp;
}
public void setTemp(int t){
theTemp=t;
notifyViews();
}
public ThermometerModel(){
theTemp=0;
}
}