| 
 | " 2013 FRC Java API" | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.sun.squawk.debugger.EventRequestModifier
public abstract class EventRequestModifier
The EventRequestModifier class creates a "filter" for EventRequest
 objects, so that only events that are matched by the modifiers associated with an event
 request are sent to the debugger. Modifiers are specified as part of a JDWP
 EventRequest.Set command.
| Nested Class Summary | |
|---|---|
| static class | EventRequestModifier.ClassMatchA ClassMatchmodifier restricts reported events to those for classes whose
 name matches a restricted regular expression. | 
| static class | EventRequestModifier.ClassOnlyFor class prepare event, a ClassOnlymodifier restricts the events
 generated by this request to be the preparation of the given reference type and
 any subtypes. | 
| static class | EventRequestModifier.CountA Countmodifier limits the requested event to be reported at most
 once after a given number of occurrences. | 
| static class | EventRequestModifier.ExceptionOnlyAn ExceptionOnlymodifier restricts reported exceptions by their
 class and whether they are caught or uncaught. | 
| static class | EventRequestModifier.LocationOnlyA LocationOnlymodifier restricts reported events to those that
 occur at a given location. | 
| static interface | EventRequestModifier.Matcher | 
| static class | EventRequestModifier.StepA Stepmodifier restricts reported step events to those which satisfy depth
 and size constraints. | 
| static class | EventRequestModifier.ThreadOnlyA ThreadOnlymodifier restricts reported events to those in a
 given thread. | 
| Constructor Summary | |
|---|---|
| EventRequestModifier() | |
| Method Summary | |
|---|---|
| abstract  boolean | matches(EventRequestModifier.Matcher matcher,
        Debugger.Event event)Determines if this modifier matches the event currently being processed by an event manager. | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public EventRequestModifier()
| Method Detail | 
|---|
public abstract boolean matches(EventRequestModifier.Matcher matcher,
                                Debugger.Event event)
| 
 | " 2013 FRC Java API" | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||