Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data
In directory usw-pr-cvs1:/tmp/cvs-serv3474/net/sourceforge/javaprofiler/jpiimpl/data
Modified Files:
SnapshotImpl.java
Log Message:
Implements Snapshot instead of VirtualMachineImageRef.
Index: SnapshotImpl.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/SnapshotImpl.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** SnapshotImpl.java 11 Jun 2002 07:08:40 -0000 1.24
--- SnapshotImpl.java 4 Jul 2002 18:00:31 -0000 1.25
***************
*** 36,40 ****
* @author Pavel Vacha
*/
! public class SnapshotImpl implements VirtualMachineImageRef, Serializable {
private String name;
private long time; //PENDING
--- 36,40 ----
* @author Pavel Vacha
*/
! public class SnapshotImpl implements Snapshot, Serializable {
private String name;
private long time; //PENDING
***************
*** 1115,1123 ****
}
}
!
! public void addChildrenListener(String type, ChildrenListener listener) {
}
! public void removeChildrenListener(String type, ChildrenListener listener) {
}
--- 1115,1135 ----
}
}
!
! /**
! * Returns size (in bytes) of free memory in the mirrored virtual
! * machine.
! *
! * @return size (in bytes) of free memory in the mirrored virtual
! * machine.
! */
! public long freeMemory() {
! //PENDING
! return 0;
! }
!
! public void removeChildrenListener(int type, ChildrenListener listener) {
}
! public void addChildrenListener(int type, ChildrenListener listener) {
}
***************
*** 1137,1140 ****
--- 1149,1155 ----
/*
* $Log$
+ * Revision 1.25 2002/07/04 18:00:31 stolis
+ * Implements Snapshot instead of VirtualMachineImageRef.
+ *
* Revision 1.24 2002/06/11 07:08:40 vachis
* GCData renamed
|