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