01: package net.matuschek.jobo;
02:
03: /*********************************************
04: Copyright (c) 2001 by Daniel Matuschek
05: *********************************************/
06:
07: /**
08: * Checks for JoBo updates
09: *
10: * @author Daniel Matuschek
11: * @version $Revision: 1.2 $
12: */
13: public class UpdateCheck extends Thread {
14:
15: /** URL where to find the latest version */
16: public static String VERSION_URL = "http://www.matuschek.net/software/jobo/version.txt";
17:
18: }
|