This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 59129
Collapse All | Expand All

(-)apichanges.xml (+22 lines)
Lines 311-316 Link Here
311
            </p>
311
            </p>
312
        </description>
312
        </description>
313
    </change>
313
    </change>
314
    <change>
315
        <api name="JPDADebuggerAPI"/>
316
        <summary>JPDA API interfaces that correspond to JDI API declared as not to implement.</summary>
317
        <version major="2" minor="6"/>
318
        <date day="5" month="8" year="2005"/>
319
        <author login="mentlicher"/>
320
        <compatibility addition="no" source="incompatible" binary="incompatible"/>
321
        <description>
322
            <p>
323
                JPDA API represents JDI functionality.
324
                Since JDI interfaces evolve from one version to another, it's
325
                necessary to declare that interfaces in
326
                org.netbeans.api.debugger.jpda package should not be implemented,
327
                since new methods can be added to these interfaces at any time
328
                to keep up with the JDI functionality.
329
            </p>
330
            <p>
331
                Also JPDABreakpointEvent and JPDABreakpointListener are moved to
332
                newly created org.netbeans.api.debugger.jpda.event package.
333
            </p>
334
        </description>
335
    </change>
314
336
315
</changes>
337
</changes>
316
338
(-)manifest.mf (-2 / +2 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.netbeans.api.debugger.jpda/1
2
OpenIDE-Module: org.netbeans.api.debugger.jpda/2
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/debugger/jpda/Bundle.properties
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/debugger/jpda/Bundle.properties
4
OpenIDE-Module-Specification-Version: 1.5
4
OpenIDE-Module-Specification-Version: 2.6
5
OpenIDE-Module-Package-Dependencies: com.sun.jdi[VirtualMachineManager]
5
OpenIDE-Module-Package-Dependencies: com.sun.jdi[VirtualMachineManager]
6
6
(-)nbproject/project.xml (+1 lines)
Lines 36-41 Link Here
36
            </module-dependencies>
36
            </module-dependencies>
37
            <public-packages>
37
            <public-packages>
38
                <package>org.netbeans.api.debugger.jpda</package>
38
                <package>org.netbeans.api.debugger.jpda</package>
39
                <package>org.netbeans.api.debugger.jpda.event</package>
39
                <package>org.netbeans.spi.debugger.jpda</package>
40
                <package>org.netbeans.spi.debugger.jpda</package>
40
            </public-packages>
41
            </public-packages>
41
        </data>
42
        </data>
(-)src/org/netbeans/api/debugger/jpda/JPDABreakpoint.java (+2 lines)
Lines 19-24 Link Here
19
import java.util.Iterator;
19
import java.util.Iterator;
20
20
21
import org.netbeans.api.debugger.Breakpoint;
21
import org.netbeans.api.debugger.Breakpoint;
22
import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent;
23
import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener;
22
24
23
/**
25
/**
24
 * Abstract definition of JPDA breakpoint.
26
 * Abstract definition of JPDA breakpoint.
(-)src/org/netbeans/api/debugger/jpda/JPDADebugger.java (+1 lines)
Lines 32-37 Link Here
32
import org.netbeans.api.debugger.DebuggerManager;
32
import org.netbeans.api.debugger.DebuggerManager;
33
import org.netbeans.api.debugger.jpda.InvalidExpressionException;
33
import org.netbeans.api.debugger.jpda.InvalidExpressionException;
34
import org.netbeans.api.debugger.jpda.Variable;
34
import org.netbeans.api.debugger.jpda.Variable;
35
import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent;
35
36
36
37
37
/**
38
/**
(-)src/org/netbeans/api/debugger/jpda/package.html (-5 / +9 lines)
Lines 17-31 Link Here
17
  -- http://www.sun.com/
17
  -- http://www.sun.com/
18
  -- 
18
  -- 
19
  -- The Original Code is NetBeans. The Initial Developer of the Original
19
  -- The Original Code is NetBeans. The Initial Developer of the Original
20
  -- Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
20
  -- Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun
21
  -- Microsystems, Inc. All Rights Reserved.
21
  -- Microsystems, Inc. All Rights Reserved.
22
  -->
22
  -->
23
</head>
23
</head>
24
<body>
24
<body>
25
JPDA Debugger APIs.
25
JPDA Debugger APIs provide representation of JDI functionality. Interfaces in
26
<ul>
26
org.netbeans.api.debugger.jpda package correspond to appropriate JDI interfaces.
27
  
27
<br>
28
</ul>
28
<br>
29
<pre style="background-color: rgb(255, 255, 102);">
30
Since JDI interfaces evolve from one version to another, it's strongly recommended
31
not to implement any interface in this package. New methods can be added to
32
these interfaces at any time to keep up with the JDI functionality.</pre>
29
<br>
33
<br>
30
<br>
34
<br>
31
</body>
35
</body>

Return to bug 59129