Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv25227/net/sourceforge/javaprofiler/jpi
Modified Files:
MonStatListener.java
Log Message:
Javadoc.
Index: MonStatListener.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/MonStatListener.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** MonStatListener.java 10 Jul 2002 14:52:54 -0000 1.5
--- MonStatListener.java 10 Sep 2002 11:04:58 -0000 1.6
***************
*** 21,25 ****
--- 21,35 ----
package net.sourceforge.javaprofiler.jpi;
+ /**
+ * Listener interface for {@link MonStatEvent}s.
+ */
public interface MonStatListener extends java.util.EventListener {
+ /**
+ * This method gets called when some monitor related information
+ * on registered {@link MonStat} object changes. Please note
+ * it is not guaranteed that it is called every time the information
+ * changes, it is possible that information changes twice quickly and you
+ * get only one event (which is issued after the second change, of course).
+ */
void monStatChanged( MonStatEvent event);
}
***************
*** 27,30 ****
--- 37,44 ----
/*
* $Log$
+ * Revision 1.6 2002/09/10 11:04:58 michalpise
+ *
+ * Javadoc.
+ *
* Revision 1.5 2002/07/10 14:52:54 petrul
* method names now start with lower case letter
***************
*** 36,38 ****
* License added.
*
! */
\ No newline at end of file
--- 50,52 ----
* License added.
*
! */
|