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;
+    else if (type == EVENT_INSTANCE)
+      return _instance;
+
+    return null;
+  }

I think something is missing. Can't this event be filtered using the Class*Filters? If so, EVENT_CLASS needs to be added to this...

Keith

Reply via email to