Content deleted Content added
m Standard headings &/or gen fixes. using AWB |
Removing link(s) to "JSwat": Removing links to deleted page JSwat. |
||
(23 intermediate revisions by 18 users not shown) | |||
Line 1:
{{Short description|APIs for Java programming language}}
The '''Java Platform Debugger Architecture''' (JPDA) is a collection of [[API]]s to [[debugging|debug]] [[Java (programming language)|Java]] code. * Java Debugger Interface (JDI)
* [[Java Virtual Machine
* Java Virtual Machine Debug Interface (JVMDI) – ''JVMDI was deprecated in J2SE 5.0 in favor of JVM TI, and was removed in Java SE 6.''
* [[Java Debug Wire Protocol]] (JDWP)
[[File:JPDA architecture.png|thumb|JPDA architecture]]
==Java Debugger Interface (JDI)==
JDI is the highest-layer of the Java Platform Debugger Architecture. It allows to access the [[Java virtual machine|JVM]] and the internal variables of the debugged program. It also allows to set [[breakpoint]]s, [[stepping (debugging)|stepping]], and handle threads.<ref>{{cite web
| url=https://www.baeldung.com/java-debug-interface
| title=An Intro to the Java Debug Interface (JDI)
| date=2019-09-07
| publisher=baeldung.com
| accessdate=2020-01-19}}</ref>
==See also==
* [[
* [[IntelliJ IDEA]], a commercial open-source Java IDE with integrated JPDA support
* JSwat, an open-source Java debugger using the JPDA
* [[NetBeans]], an open-source IDE using the JPDA
==References==
{{Reflist}}
==External links==
* [http://
* [http://docs.oracle.com/javase/8/docs/technotes/guides/jpda/ Java Platform Debugger Architecture for Java SE 8]
[[Category:Debuggers]]
|