Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl
In directory usw-pr-cvs1:/tmp/cvs-serv5534
Modified Files:
VirtualMachineImpl.java
Log Message:
fixes javadoc, malformed links
by michal
Index: VirtualMachineImpl.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/VirtualMachineImpl.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** VirtualMachineImpl.java 12 Sep 2002 17:17:52 -0000 1.19
--- VirtualMachineImpl.java 12 Sep 2002 19:46:35 -0000 1.20
***************
*** 149,153 ****
}
}
!
/*
* Returns size (in bytes) of allocated memory in the mirrored virtual
--- 149,153 ----
}
}
!
/*
* Returns size (in bytes) of allocated memory in the mirrored virtual
***************
*** 181,185 ****
* target VM is closed, and the target VM prepares to accept another
* subsequent connection from this profiler or another profiler, including
! * the following tasks: All threads suspended by {@link #suspendThreads()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
--- 181,185 ----
* target VM is closed, and the target VM prepares to accept another
* subsequent connection from this profiler or another profiler, including
! * the following tasks: All threads suspended by {@link VirtualMachineImpl#suspendThreads()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
***************
*** 216,220 ****
try {
iprof.resumeVM();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
} catch (UNAVAILABLE_Exception e) {
--- 216,220 ----
try {
iprof.resumeVM();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
} catch (UNAVAILABLE_Exception e) {
***************
*** 257,273 ****
*
* Note: this method doesn't stop running JVM, to stop running JVM,
! * use exit() method instead.
*
! * @see #isShutdown()
! * @see #exit()
*/
public void shutdown() {
try {
iprof.shutdown();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
! }
}
!
/**
* Checks if profiled JVM is shutting down. So, it means, the JVM is no
--- 257,272 ----
*
* Note: this method doesn't stop running JVM, to stop running JVM,
! * use exitVM() method instead.
*
! * @see #isShutdown() #exitVM()
*/
public void shutdown() {
try {
iprof.shutdown();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
! }
}
!
/**
* Checks if profiled JVM is shutting down. So, it means, the JVM is no
***************
*** 280,290 ****
* false (still running, normal operation)
*
! * @see #shutdown()
! * @see #exit(int)
*/
! public boolean isShutdown() {
try {
return iprof.isShutdowned();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
return true;
--- 279,288 ----
* false (still running, normal operation)
*
! * @see #shutdown() #exitVM()
*/
! public boolean isShutdown() {
try {
return iprof.isShutdowned();
! } catch (COMMUN_Exception e) {
fireVMDisconnected();
return true;
***************
*** 313,318 ****
/*
* $Log$
! * Revision 1.19 2002/09/12 17:17:52 vachis
! * changes in docs
*
* Revision 1.18 2002/09/12 13:58:41 michalpise
--- 311,317 ----
/*
* $Log$
! * Revision 1.20 2002/09/12 19:46:35 vachis
! * fixes javadoc, malformed links
! * by michal
*
* Revision 1.18 2002/09/12 13:58:41 michalpise
|