From: Pavel V. <va...@us...> - 2002-07-24 22:30:43
|
Update of /cvsroot/javaprofiler/test/module In directory usw-pr-cvs1:/tmp/cvs-serv18344 Modified Files: TestAllocHistView.java Log Message: some prompts Index: TestAllocHistView.java =================================================================== RCS file: /cvsroot/javaprofiler/test/module/TestAllocHistView.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** TestAllocHistView.java 22 Jul 2002 23:39:48 -0000 1.3 --- TestAllocHistView.java 24 Jul 2002 22:30:40 -0000 1.4 *************** *** 47,52 **** --- 47,54 ---- public TestAllocHistView() { try { + System.out.print( "Connecting ... \n" ); vm = connect(); + System.out.print( "Preparing relatime ... \n" ); image = vm.realtimeImage(); ((net.sourceforge.javaprofiler.jpiimpl.realtime.ImageR) image). *************** *** 56,59 **** --- 58,62 ---- //image = getSnapshot(vm); + System.out.print( "Creating window ... \n" ); frame=new JFrame("Main"); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); *************** *** 92,95 **** --- 95,99 ---- } public void run() { + System.out.print( "Running ... \n" ); while( !stop ) { ((net.sourceforge.javaprofiler.jpiimpl.realtime.ImageR) image). |