From: Jan S. <st...@us...> - 2001-08-22 13:17:02
|
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv29944 Modified Files: Bootstrap.java Log Message: Bootstrap now points to the implementation of the VirtualMachineManager. Index: Bootstrap.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Bootstrap.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Bootstrap.java 2001/07/07 22:20:54 1.2 --- Bootstrap.java 2001/08/22 13:16:59 1.3 *************** *** 21,24 **** --- 21,26 ---- package net.sourceforge.javaprofiler.jpi; + import net.sourceforge.javaprofiler.jpiimpl.VirtualMachineManagerImpl; + /** * Initial class that provides access to the default implementation of JPI *************** *** 36,40 **** */ public static VirtualMachineManager virtualMachineManager() { ! return null; } --- 38,42 ---- */ public static VirtualMachineManager virtualMachineManager() { ! return new VirtualMachineManagerImpl(); } *************** *** 43,46 **** --- 45,51 ---- /* * $Log$ + * Revision 1.3 2001/08/22 13:16:59 stolis + * Bootstrap now points to the implementation of the VirtualMachineManager. + * * Revision 1.2 2001/07/07 22:20:54 stolis * Small change in documentation. |