|
From: Michal P. <mic...@us...> - 2002-09-10 11:03:29
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi
In directory usw-pr-cvs1:/tmp/cvs-serv24789/net/sourceforge/javaprofiler/jpi
Modified Files:
CPUStatListener.java
Log Message:
Javadoc.
Index: CPUStatListener.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/CPUStatListener.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** CPUStatListener.java 10 Jul 2002 14:24:16 -0000 1.4
--- CPUStatListener.java 10 Sep 2002 11:03:25 -0000 1.5
***************
*** 21,25 ****
--- 21,35 ----
package net.sourceforge.javaprofiler.jpi;
+ /**
+ * Listener interface for {@link CPUStatEvent}s.
+ */
public interface CPUStatListener extends java.util.EventListener {
+ /**
+ * This method gets called when some CPU related information
+ * on registered {@link CPUStat} 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 CPUStatChanged( CPUStatEvent event);
}
***************
*** 27,30 ****
--- 37,44 ----
/*
* $Log$
+ * Revision 1.5 2002/09/10 11:03:25 michalpise
+ *
+ * Javadoc.
+ *
* Revision 1.4 2002/07/10 14:24:16 petrul
* listeners now extend java.util.EventListener
***************
*** 33,35 ****
* License added.
*
! */
\ No newline at end of file
--- 47,49 ----
* License added.
*
! */
|