/*
* Copyright (c) 2012 Felix Mo. All rights reserved.
*
* CitySim is published under the terms of the MIT License. See the LICENSE file for more information.
*
*/
/**
* Write a description of class ZoneAgeDBUpdateThread here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class ZoneAgeDBUpdateThread extends CSThread
{
private int age = 0;
public ZoneAgeDBUpdateThread(int age) {
super("ZoneAgeDBUpdateThread");
this.age = age;
}
public void run() {
DataSource.getInstance().increaseZoneAge(age);
}
}