Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4448968

JDI cannot create WatchpointRequest's on local data

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.3.0
    • core-svc
    • generic
    • generic



      Name: tb29552 Date: 04/20/2001


      java version "1.3.0_02"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0_02)
      Java HotSpot(TM) Client VM (build 1.3.0_02, mixed mode)

      This is a JDI problem.

      com.sun.jdi.request.EventRequestManager only allows the creation of
      WatchpointRequest's on a Field; that is, WatchpointRequest's can only watch
      members of a class, not variables which are local to methods.

      For instance, say I have the following methods:

      class Foo {
         Bar getBar( ) {
            Bar bar;
            tinkerWithBar( bar );
            return( bar );
         }

         void tinkerWithBar( /* in-out */ Bar bar ) {
            bar = new BarChildClass( ); // a class that extends Bar
         }
      }

      Now, say I want to place a WatchpointRequest on the local variable "bar" within
      method Foo.getBar .... There is no apparent way to do this, and yet it is a
      standard feature of MOST languages and debuggers.
      (Review ID: 121046)
      ======================================================================

            rfield Robert Field (Inactive)
            tbell Tim Bell
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: