summaryrefslogtreecommitdiff
path: root/gnu/classpath/jdwp/event/filters/StepFilter.java
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2007-01-18 01:11:06 +0000
committerKeith Seitz <keiths@redhat.com>2007-01-18 01:11:06 +0000
commit883bc2d2370334cf3b1cbb183c596319c54e031a (patch)
treed12fa19f5b81b0be99f6b6be418b6002865539f0 /gnu/classpath/jdwp/event/filters/StepFilter.java
parentf68220f479f486297119adc8188d2c02e8401642 (diff)
downloadclasspath-883bc2d2370334cf3b1cbb183c596319c54e031a.tar.gz
* gnu/classpath/jdwp/events/filters/StepFilter.java:
Update javadoc. (matches): Implement. * gnu/classpath/jdwp/event/EventManager.java (EventManager): Honor agent startup suspension for VM_INIT.
Diffstat (limited to 'gnu/classpath/jdwp/event/filters/StepFilter.java')
-rw-r--r--gnu/classpath/jdwp/event/filters/StepFilter.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/classpath/jdwp/event/filters/StepFilter.java b/gnu/classpath/jdwp/event/filters/StepFilter.java
index 340546e88..d18f6975e 100644
--- a/gnu/classpath/jdwp/event/filters/StepFilter.java
+++ b/gnu/classpath/jdwp/event/filters/StepFilter.java
@@ -1,5 +1,5 @@
/* StepFilter.java -- a step filter
- Copyright (C) 2005 Free Software Foundation
+ Copyright (C) 2005, 2007 Free Software Foundation
This file is part of GNU Classpath.
@@ -39,6 +39,7 @@ exception statement from your version. */
package gnu.classpath.jdwp.event.filters;
+import gnu.classpath.jdwp.JdwpConstants;
import gnu.classpath.jdwp.event.Event;
import gnu.classpath.jdwp.exception.InvalidThreadException;
import gnu.classpath.jdwp.id.ThreadId;
@@ -48,6 +49,12 @@ import gnu.classpath.jdwp.id.ThreadId;
* satisfy depth and size constraints. This modifier can only be used with
* step event kinds."
*
+ * This "filter" is not really a filter. It is simply a way to communicate
+ * stepping information in a convenient way between the JDWP backend and
+ * the virtual machine.
+ *
+ * Consequently, this "filter" always matches.
+ *
* @author Keith Seitz (keiths@redhat.com)
*/
public class StepFilter
@@ -115,7 +122,6 @@ public class StepFilter
*/
public boolean matches (Event event)
{
- // FIXME
- throw new RuntimeException ("StepFilter.matches not implemented");
+ return true;
}
}