Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/data
In directory usw-pr-cvs1:/tmp/cvs-serv11761/net/sourceforge/javaprofiler/module/data
Modified Files:
Session.java
Log Message:
Changes forced by new API.
Index: Session.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/data/Session.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Session.java 26 Feb 2002 00:49:14 -0000 1.2
--- Session.java 4 Jul 2002 18:21:12 -0000 1.3
***************
*** 26,30 ****
import net.sourceforge.javaprofiler.jpi.Snapshot;
! import net.sourceforge.javaprofiler.jpi.VirtualMachine;
/**
--- 26,30 ----
import net.sourceforge.javaprofiler.jpi.Snapshot;
! import net.sourceforge.javaprofiler.jpi.VirtualMachineRef;
/**
***************
*** 39,43 ****
private boolean remote;
/** Mirror of the virtual machine. */
! private VirtualMachine vm;
/** No. of snapshots created from this session. */
private int snapshots=0;
--- 39,43 ----
private boolean remote;
/** Mirror of the virtual machine. */
! private VirtualMachineRef vm;
/** No. of snapshots created from this session. */
private int snapshots=0;
***************
*** 48,52 ****
* @param vm mirror of the virtual machine.
*/
! public Session(VirtualMachine vm, boolean remote, String name) {
this.vm=vm;
this.remote=remote;
--- 48,52 ----
* @param vm mirror of the virtual machine.
*/
! public Session(VirtualMachineRef vm, boolean remote, String name) {
this.vm=vm;
this.remote=remote;
***************
*** 78,82 ****
* @return mirror of the virtual machine.
*/
! public VirtualMachine getVM() {
return vm;
}
--- 78,82 ----
* @return mirror of the virtual machine.
*/
! public VirtualMachineRef getVM() {
return vm;
}
***************
*** 98,101 ****
--- 98,104 ----
/*
* $Log$
+ * Revision 1.3 2002/07/04 18:21:12 stolis
+ * Changes forced by new API.
+ *
* Revision 1.2 2002/02/26 00:49:14 stolis
* Refactoring of Create snapshot action.
|