Back to project page BusTicketer.
The source code is released under:
Copyright (c) 2013, Nelspike All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Red...
If you think the Android project BusTicketer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package bus.ticketer.runnable; //from w w w .j ava2 s .com import android.view.View; import bus.ticketer.utils.BusTimer; public class TimerThread extends Thread { BusTimer timer; public TimerThread() { } public TimerThread(BusTimer t) { this.timer = t; } @Override public void run() { timer.start(); } public void setTimer(BusTimer t) { this.timer = t; } public void setView(View view) { timer.setView(view); } }