|
From: Pavel V. <va...@us...> - 2002-09-10 19:28:11
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl
In directory usw-pr-cvs1:/tmp/cvs-serv7035
Modified Files:
VirtualMachineImpl.java
Log Message:
empty error handler methods
Index: VirtualMachineImpl.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/VirtualMachineImpl.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** VirtualMachineImpl.java 3 Sep 2002 17:48:50 -0000 1.14
--- VirtualMachineImpl.java 10 Sep 2002 19:28:07 -0000 1.15
***************
*** 31,35 ****
* Implementation of Virtual Machine.
*
! * @see net.sourceforge.javaprofiler.jpi.VirtualMachine
* @author Jan Stola
*/
--- 31,35 ----
* Implementation of Virtual Machine.
*
! * @see net.sourceforge.javaprofiler.jpi.VirtualMachineRef
* @author Jan Stola
*/
***************
*** 169,173 ****
* 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 ThreadInfo#suspend()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
--- 169,173 ----
* 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 VirtaulMachineImpl#suspend()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
***************
*** 175,179 ****
* (<code>ClassInfo</code>, <code>ThreadInfo</code>, etc.) will become invalid.
*/
! public void dispose() {
//PENDING
iprof.stop();
--- 175,179 ----
* (<code>ClassInfo</code>, <code>ThreadInfo</code>, etc.) will become invalid.
*/
! public void disconnect() {
//PENDING
iprof.stop();
***************
*** 230,234 ****
* use exitVM() method instead.
*
! * @see isShutdowned(), exitVM()
*/
public void shutdown() {
--- 230,234 ----
* use exitVM() method instead.
*
! * @see #isShutdowned(), #exitVM()
*/
public void shutdown() {
***************
*** 237,241 ****
} catch (COMMUN_Exception e) {
throw new VMDisconnectedException();
! }
}
--- 237,241 ----
} catch (COMMUN_Exception e) {
throw new VMDisconnectedException();
! }
}
***************
*** 250,254 ****
* false (still running, normal operation)
*
! * @see shutdown(), exitVM()
*/
public boolean isShutdown() {
--- 250,254 ----
* false (still running, normal operation)
*
! * @see #shutdown(), #exitVM()
*/
public boolean isShutdown() {
***************
*** 277,284 ****
--- 277,298 ----
}
}
+
+ /** Register a disconnection listener */
+ public void addDisconnectionListener(DisconnectionListener l) {
+ //PENDING
+ }
+
+ /** Unregister a disconnection listener */
+ public void removeDisconnectionListener(DisconnectionListener l) {
+ //PENDING
+ }
+
}
/*
* $Log$
+ * Revision 1.15 2002/09/10 19:28:07 vachis
+ * empty error handler methods
+ *
* Revision 1.14 2002/09/03 17:48:50 petrul
* changed constructor code
|