This patch just fixes a repeated javadoc error in several of the JDWP
Events. Not sure if this needs to be approved by the list, but I
figured I'd send it in anyway.
Cheers,
Kyle
2006-06-16 Kyle Galloway <[EMAIL PROTECTED]>
* gnu/classpath/jdwp/event/ExceptionEvent:
Added Object instance to javadoc in constructor
* gnu/classpath/jdwp/event/MethodEntryEvent:
Ditto.
* gnu/classpath/jdwp/event/MethodExitEvent:
Ditto,
* gnu/classpath/jdwp/event/SingleStepEvent:
Ditto.
Index: ExceptionEvent.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/classpath/jdwp/event/ExceptionEvent.java,v
retrieving revision 1.1
diff -u -r1.1 ExceptionEvent.java
--- ExceptionEvent.java 12 Jun 2006 19:59:43 -0000 1.1
+++ ExceptionEvent.java 16 Jun 2006 18:02:23 -0000
@@ -79,6 +79,7 @@
* @param thread the thread where the exception occurred
* @param location the location where the exception was thrown
* @param catchLocation the location where the exception was caught
+ * @param instance the instance that threw the exception
*/
public ExceptionEvent(Throwable exception, Thread thread, Location location,
Location catchLocation, Object instance)
Index: MethodEntryEvent.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/classpath/jdwp/event/MethodEntryEvent.java,v
retrieving revision 1.1
diff -u -r1.1 MethodEntryEvent.java
--- MethodEntryEvent.java 12 Jun 2006 21:25:14 -0000 1.1
+++ MethodEntryEvent.java 16 Jun 2006 18:02:23 -0000
@@ -68,6 +68,7 @@
*
* @param thread the thread where the exception occurred
* @param location the location single stepped to
+ * @param instance instance from which the method was called
*/
public MethodEntryEvent(Thread thread, Location location, Object instance)
{
Index: MethodExitEvent.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/classpath/jdwp/event/MethodExitEvent.java,v
retrieving revision 1.1
diff -u -r1.1 MethodExitEvent.java
--- MethodExitEvent.java 12 Jun 2006 21:25:14 -0000 1.1
+++ MethodExitEvent.java 16 Jun 2006 18:02:23 -0000
@@ -68,6 +68,7 @@
*
* @param thread the thread where the exception occurred
* @param location the location single stepped to
+ * @param instance the instance from which the method was called
*/
public MethodExitEvent(Thread thread, Location location, Object instance)
{
Index: SingleStepEvent.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/classpath/jdwp/event/SingleStepEvent.java,v
retrieving revision 1.1
diff -u -r1.1 SingleStepEvent.java
--- SingleStepEvent.java 12 Jun 2006 21:29:39 -0000 1.1
+++ SingleStepEvent.java 16 Jun 2006 18:02:23 -0000
@@ -71,6 +71,7 @@
*
* @param thread the thread where the exception occurred
* @param location the location single stepped to
+ * @param instance the instance in which the single step occurred
*/
public SingleStepEvent(Thread thread, Location location, Object instance)
{