Re: Setting breakpoints in methods
Nathan Fiedler <[email protected]>
| Newsgroups | gmane.comp.java.jswat.user |
|---|---|
| Message-ID | <1024359915.1440.20.camel@chip> |
Wildcards are not supported for method argument types, at this time. How many methods of that name exist in that class? Perhaps an easier solution would be to change 'stop' to set a method breakpoint when given only the method name, and that method is not overloaded. Would that satisfy you needs? n On Mon, 2002-06-17 at 16:33, Scott Urman wrote: > Hi, > Is there a way to set a breakpoint in a method, without having to > completely specify the complete types of the method parameters? i.e. I > have a method declared as > > public void internalService(HttpServletRequest request, > HttpServletResponse responce) > > that I want to break at. But I don't remember the complete type for > HttpServletRequest or HttpServletResponse. Is there a way to use > wildcards in the stop command? Thanks.