summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Galloway <kgallowa@redhat.com>2006-06-16 18:16:32 +0000
committerKyle Galloway <kgallowa@redhat.com>2006-06-16 18:16:32 +0000
commitcebd8528ae788d778efe340c521e7a4f1954b806 (patch)
treeda2bd3deb24c8ba6a85565d1810599079a5a9605
parent6e3cb55ff69ff06734603f5c7f5d45f069a52db0 (diff)
downloadclasspath-cebd8528ae788d778efe340c521e7a4f1954b806.tar.gz
2006-06-16 Kyle Galloway <kgallowa@redhat.com>
* 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.
-rw-r--r--ChangeLog11
-rw-r--r--gnu/classpath/jdwp/event/ExceptionEvent.java1
-rw-r--r--gnu/classpath/jdwp/event/MethodEntryEvent.java1
-rw-r--r--gnu/classpath/jdwp/event/MethodExitEvent.java1
-rw-r--r--gnu/classpath/jdwp/event/SingleStepEvent.java1
5 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 63635765d..b9190dff0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-06-16 Kyle Galloway <kgallowa@redhat.com>
+
+ * 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.
+
2006-06-16 Tom Tromey <tromey@redhat.com>
* external/jsr166: Removed files from cvs trunk.
diff --git a/gnu/classpath/jdwp/event/ExceptionEvent.java b/gnu/classpath/jdwp/event/ExceptionEvent.java
index 124a64abd..a51e69c8f 100644
--- a/gnu/classpath/jdwp/event/ExceptionEvent.java
+++ b/gnu/classpath/jdwp/event/ExceptionEvent.java
@@ -79,6 +79,7 @@ public class ExceptionEvent
* @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)
diff --git a/gnu/classpath/jdwp/event/MethodEntryEvent.java b/gnu/classpath/jdwp/event/MethodEntryEvent.java
index 479e36595..40c0516c7 100644
--- a/gnu/classpath/jdwp/event/MethodEntryEvent.java
+++ b/gnu/classpath/jdwp/event/MethodEntryEvent.java
@@ -68,6 +68,7 @@ public class MethodEntryEvent
*
* @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)
{
diff --git a/gnu/classpath/jdwp/event/MethodExitEvent.java b/gnu/classpath/jdwp/event/MethodExitEvent.java
index 0dd3566fa..ce03dd264 100644
--- a/gnu/classpath/jdwp/event/MethodExitEvent.java
+++ b/gnu/classpath/jdwp/event/MethodExitEvent.java
@@ -68,6 +68,7 @@ public class MethodExitEvent
*
* @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)
{
diff --git a/gnu/classpath/jdwp/event/SingleStepEvent.java b/gnu/classpath/jdwp/event/SingleStepEvent.java
index 1b18acdd2..cd69dd99d 100644
--- a/gnu/classpath/jdwp/event/SingleStepEvent.java
+++ b/gnu/classpath/jdwp/event/SingleStepEvent.java
@@ -71,6 +71,7 @@ public class SingleStepEvent
*
* @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)
{