01: /*
02: $Id: ValuesRendererTest.java,v 1.3 2005/02/14 12:12:23 vauclair Exp $
03:
04: Copyright (C) 2002-2005 Sebastien Vauclair
05:
06: This file is part of Extensible Java Profiler.
07:
08: Extensible Java Profiler is free software; you can redistribute it and/or
09: modify it under the terms of the GNU General Public License as published by
10: the Free Software Foundation; either version 2 of the License, or
11: (at your option) any later version.
12:
13: Extensible Java Profiler is distributed in the hope that it will be useful,
14: but WITHOUT ANY WARRANTY; without even the implied warranty of
15: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: GNU General Public License for more details.
17:
18: You should have received a copy of the GNU General Public License
19: along with Extensible Java Profiler; if not, write to the Free Software
20: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: */
22:
23: package ejp.presenter.api.util;
24:
25: /**
26: * TODOC
27: *
28: * @author Sebastien Vauclair
29: * @version <code>$Revision: 1.3 $<br>$Date: 2005/02/14 12:12:23 $</code>
30: */
31: public class ValuesRendererTest {
32: /**
33: * Convenience method for testing purpose.
34: */
35: public static void main(String[] aArgs) throws Exception {
36: String s;
37: do {
38: s = new java.io.LineNumberReader(
39: new java.io.InputStreamReader(System.in))
40: .readLine();
41: System.out.println(ValuesRenderer.renderTime(new Long(s)
42: .longValue(), true));
43: } while (s.length() > 0);
44: }
45: }
|