This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
Hi Keith,So, after much discussion last week, I'm not sure where I stand in making any progress at getting this stuff committed.
I've attached the outstanding patches awaiting more review and/or
approval.
+public interface IEventFilter
+{
+ /**
+ * Does the given event match the filter?
+ *
+ * @param event the <code>Event</code> to scrutinize
+ */
+ public boolean matches (Event event);
+}
+/**
+ * This class manages objects and referencetypes that are reported
+ * to the debugger. All objects and referencetypes reported to the
+ * debugger should go through this manager.
+ *
+ * @author Keith Seitz (keiths@redhat.com)
+ */
+public class IdManager
+{
+ // Reference queues for invalid ObjectIds and ReferenceTypeIds
+ private ReferenceQueue _oidRefQueue;
+ private ReferenceQueue _ridRefQueue;
+
+ /* Mapping of objects (Object) to IDs (ObjectId). Table is a
+ synchronized WeakHashMap. */
+ private Map _oidTable;
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |