|
From: Michal P. <mic...@us...> - 2002-09-10 11:04:47
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv25159/net/sourceforge/javaprofiler/jpi
Modified Files:
MonStatEvent.java
Log Message:
Javadoc.
Index: MonStatEvent.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/MonStatEvent.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** MonStatEvent.java 2 Jul 2002 20:17:13 -0000 1.3
--- MonStatEvent.java 10 Sep 2002 11:04:44 -0000 1.4
***************
*** 20,25 ****
*/
package net.sourceforge.javaprofiler.jpi;
!
public class MonStatEvent extends java.util.EventObject {
public MonStatEvent( MonStat source) {
super( source);
--- 20,32 ----
*/
package net.sourceforge.javaprofiler.jpi;
! /**
! * Event indicating that some monitor related information of the source object has changed.
! * The receved object can assume that the source is always implementation of
! * {@link MonStat} interface.
! */
public class MonStatEvent extends java.util.EventObject {
+ /**
+ * Creates new event object with the specified source.
+ */
public MonStatEvent( MonStat source) {
super( source);
***************
*** 29,34 ****
/*
* $Log$
* Revision 1.3 2002/07/02 20:17:13 stolis
* License added.
*
! */
\ No newline at end of file
--- 36,45 ----
/*
* $Log$
+ * Revision 1.4 2002/09/10 11:04:44 michalpise
+ *
+ * Javadoc.
+ *
* Revision 1.3 2002/07/02 20:17:13 stolis
* License added.
*
! */
|