classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Re: [RFA/JDWP] ID factory


From: Tom Tromey
Subject: [cp-patches] Re: [RFA/JDWP] ID factory
Date: 14 Jun 2005 14:11:17 -0600
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

>>>>> "Keith" == Keith Seitz <address@hidden> writes:

Keith> 2005-06-14  Keith Seitz  <address@hidden>
Keith>         * gnu/classpath/jdwp/id/JdwpIdFactory.java: New file.

Looks good.

Keith> +    /* ObjectId and ArrayId are special cases. See
Keith> +       end if newId. */

I think it should be s/if/of/

Keith> +            catch (InstantiationException ie)
Keith> +              {
Keith> +                // This really should not happen
Keith> +                throw new RuntimeException ("cannot create new ID");

It is generally better to chain exceptions.

Keith> +    /* getSuperclass returned null and no matching ID type found.
Keith> +       So there are only two choices left: an array or something
Keith> +       deriving from Object. */
Keith> +    if (object.getClass ().isArray ())
Keith> +      id = new ArrayId ();

If arrays are special you might as well check for this above, since
you know in advance that it won't appear in the table.  (This isn't an
important point for me though.)

Tom




reply via email to

[Prev in Thread] Current Thread [Next in Thread]