diff options
| author | Kyle Galloway <kgallowa@redhat.com> | 2006-06-16 18:16:32 +0000 |
|---|---|---|
| committer | Kyle Galloway <kgallowa@redhat.com> | 2006-06-16 18:16:32 +0000 |
| commit | cebd8528ae788d778efe340c521e7a4f1954b806 (patch) | |
| tree | da2bd3deb24c8ba6a85565d1810599079a5a9605 /gnu/classpath | |
| parent | 6e3cb55ff69ff06734603f5c7f5d45f069a52db0 (diff) | |
| download | classpath-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.
Diffstat (limited to 'gnu/classpath')
| -rw-r--r-- | gnu/classpath/jdwp/event/ExceptionEvent.java | 1 | ||||
| -rw-r--r-- | gnu/classpath/jdwp/event/MethodEntryEvent.java | 1 | ||||
| -rw-r--r-- | gnu/classpath/jdwp/event/MethodExitEvent.java | 1 | ||||
| -rw-r--r-- | gnu/classpath/jdwp/event/SingleStepEvent.java | 1 |
4 files changed, 4 insertions, 0 deletions
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) { |
