Kyle Galloway wrote:
+ /** + * Returns a specific filtering parameter for this event. Valid types are + * thread and location+ * + * @param type the type of parameter desired+ * @returns the desired parameter or null + */ + public Object getParameter(int type) + { + if (type == EVENT_THREAD) + return _thread; + else if (type == EVENT_LOCATION) + return _location; + + return null; + }
Same thing as MethodEntry, I think: EVENT_CLASS needs to be added. Keith
