BAEL-2846 - JDIExample renamed to JDIExampleDebuggee (#7636)
This commit is contained in:
committed by
Grzegorz Piwowarek
parent
3a5f594754
commit
bcbff27129
@@ -0,0 +1,14 @@
|
||||
package com.baeldung.jdi;
|
||||
|
||||
public class JDIExampleDebuggee {
|
||||
|
||||
public static void main(String[] args) {
|
||||
String jpda = "Java Platform Debugger Architecture";
|
||||
System.out.println("Hi Everyone, Welcome to " + jpda); //add a break point here
|
||||
|
||||
String jdi = "Java Debug Interface"; //add a break point here and also stepping in here
|
||||
String text = "Today, we'll dive into " + jdi;
|
||||
System.out.println(text);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user