Re: [cp-patches] [RFA] JDWP Null values

2007-02-28 Thread Kyle Galloway
Keith Seitz wrote: Kyle Galloway wrote: ChangeLog 2007-02-27 Kyle Galloway [EMAIL PROTECTED] * gnu/classpath/jdwp/id/NullObjectId.java: New class. * gnu/classpath/jdwp/util/NullObject.java: New class. * vm/reference/gnu/classpath/jdwp/VMIdManager.java (getObjectId): Handle null

[cp-patches] [RFA] JDWP Null values

2007-02-27 Thread Kyle Galloway
Hi, This patch adds a wrapper for null objects for JDWP. In order to distinguish between valid(object id 0) and invalid(null pointer) null values, the NullObject class has been created to represent a case where null is a valid value. This patch also update the reference VMIdManager to

Re: [cp-patches] [RFA] JDWP Null values

2007-02-27 Thread Keith Seitz
Kyle Galloway wrote: ChangeLog 2007-02-27 Kyle Galloway [EMAIL PROTECTED] * gnu/classpath/jdwp/id/NullObjectId.java: New class. * gnu/classpath/jdwp/util/NullObject.java: New class. * vm/reference/gnu/classpath/jdwp/VMIdManager.java (getObjectId): Handle null object. (get):