|
From: Michal P. <mic...@us...> - 2002-09-10 11:01:33
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv24238/net/sourceforge/javaprofiler/jpi
Modified Files:
Bootstrap.java
Log Message:
Javadoc update.
Index: Bootstrap.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/Bootstrap.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** Bootstrap.java 9 Sep 2002 16:27:32 -0000 1.4
--- Bootstrap.java 10 Sep 2002 11:01:29 -0000 1.5
***************
*** 9,24 ****
* The Initial Developers of the Original Code are Jan Stola, Pavel Vacha,
* Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek.
! * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights
! Reserved.
! * Portions created by Pavel Vacha are Copyright (C) 2000-2001. All Rights
! Reserved.
! * Portions created by Michal Pise are Copyright (C) 2000-2001. All Rights
! Reserved.
! * Portions created by Petr Luner are Copyright (C) 2000-2001. All Rights
! Reserved.
! * Portions created by Lukas Petru are Copyright (C) 2000-2001. All Rights
! Reserved.
! * Portions created by Marek Przeczek are Copyright (C) 2000-2001. All Rights
! Reserved.
*
* Contributors: Jan Stola, Pavel Vacha, Michal Pise, Petr Luner,
--- 9,18 ----
* The Initial Developers of the Original Code are Jan Stola, Pavel Vacha,
* Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek.
! * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved.
! * Portions created by Pavel Vacha are Copyright (C) 2000-2001. All Rights eserved.
! * Portions created by Michal Pise are Copyright (C) 2000-2001. All RightsReserved.
! * Portions created by Petr Luner are Copyright (C) 2000-2001. All Rights Reserved.
! * Portions created by Lukas Petru are Copyright (C) 2000-2001. All Rights Reserved.
! * Portions created by Marek Przeczek are Copyright (C) 2000-2001. All Rights Reserved.
*
* Contributors: Jan Stola, Pavel Vacha, Michal Pise, Petr Luner,
***************
*** 32,54 ****
* Initial class that provides access to the default implementation of JPI
* interfaces. A profiler application uses this class to access the single
! * instance of the {@link ConnectorManager} interface.
*
* @author Jan Stola, Michal Pise
*/
public class Bootstrap extends Object {
! /** Field used to implement singleton pattern of class {@link
! ConnectorManager}. */
private static ConnectorManager manager;
/**
! * Constructor has private access because there should be no Bootstrap
! instances.
*/
private Bootstrap() {}
/**
! * Method for accessing implementation of the {@link ConnectorManager}.
*
! * @return default implementation of the {@link ConnectorManager} interface.
*/
public static ConnectorManager connectorManager() {
--- 26,51 ----
* Initial class that provides access to the default implementation of JPI
* interfaces. A profiler application uses this class to access the single
! * instance of the {@link net.sourceforge.javaprofiler.jpi.connect.ConnectorManager} interface.
*
* @author Jan Stola, Michal Pise
*/
public class Bootstrap extends Object {
! /** Field used to implement singleton pattern of class
! * {@link net.sourceforge.javaprofiler.jpi.connect.ConnectorManager}.
! */
private static ConnectorManager manager;
/**
! * The only constructor of this class has private access because
! * there should be no Bootstrap instances.
*/
private Bootstrap() {}
/**
! * Method for accessing implementation of the
! * {@link net.sourceforge.javaprofiler.jpi.connect.ConnectorManager}.
*
! * @return default implementation of the
! * {@link net.sourceforge.javaprofiler.jpi.connect.ConnectorManager} interface.
*/
public static ConnectorManager connectorManager() {
***************
*** 59,67 ****
"net.sourceforge.javaprofiler.jpiimpl.connect.ConnectorManagerImpl").newInstance();
} 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 );
--- 56,64 ----
"net.sourceforge.javaprofiler.jpiimpl.connect.ConnectorManagerImpl").newInstance();
} 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 );
***************
*** 73,76 ****
--- 70,77 ----
/*
* $Log$
+ * Revision 1.5 2002/09/10 11:01:29 michalpise
+ *
+ * Javadoc update.
+ *
* Revision 1.4 2002/09/09 16:27:32 vachis
* fixies in javadoc
|