|
From: Pavel V. <va...@us...> - 2002-09-09 16:27:37
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv23885
Modified Files:
Bootstrap.java VirtualMachineRef.java
Log Message:
fixies in javadoc
Index: Bootstrap.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/Bootstrap.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Bootstrap.java 26 Aug 2002 19:30:14 -0000 1.3
--- Bootstrap.java 9 Sep 2002 16:27:32 -0000 1.4
***************
*** 60,69 ****
} catch ( ClassNotFoundException e) {
throw new RuntimeException( "Error in finding class ConnectorManager: "
! + e.getMessage() );
} catch ( InstantiationException e ) {
throw new RuntimeException( "Error in intatitation ConnectorManager: "
! + e.getMessage() );
} catch ( IllegalAccessException e ) {
! throw new RuntimeException( "IllegalAccessException" + e.getMessage() );
}
return manager;
--- 60,69 ----
} catch ( ClassNotFoundException e) {
throw new RuntimeException( "Error in finding class ConnectorManager: "
! + e );
} catch ( InstantiationException e ) {
throw new RuntimeException( "Error in intatitation ConnectorManager: "
! + e );
} catch ( IllegalAccessException e ) {
! throw new RuntimeException( "IllegalAccessException" + e );
}
return manager;
***************
*** 73,76 ****
--- 73,79 ----
/*
* $Log$
+ * Revision 1.4 2002/09/09 16:27:32 vachis
+ * fixies in javadoc
+ *
* Revision 1.3 2002/08/26 19:30:14 vachis
* fix in loaded class name
Index: VirtualMachineRef.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/VirtualMachineRef.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** VirtualMachineRef.java 31 Jul 2002 21:34:53 -0000 1.7
--- VirtualMachineRef.java 9 Sep 2002 16:27:34 -0000 1.8
***************
*** 101,105 ****
* false (still running, normal operation)
*
! * @see shutdown(), exitVM()
*/
public boolean isShutdown();
--- 101,105 ----
* false (still running, normal operation)
*
! * @see #shutdown(), #exitVM()
*/
public boolean isShutdown();
***************
*** 116,120 ****
* use exitVM() method instead.
*
! * @see isShutdowned(), exitVM()
*/
public void shutdown();
--- 116,120 ----
* use exitVM() method instead.
*
! * @see #isShutdowned(), #exitVM()
*/
public void shutdown();
***************
*** 124,127 ****
--- 124,130 ----
/*
* $Log$
+ * Revision 1.8 2002/09/09 16:27:34 vachis
+ * fixies in javadoc
+ *
* Revision 1.7 2002/07/31 21:34:53 vachis
* method renamed to isShutdown()
|