BAEL-2846 - JDIExample renamed to JDIExampleDebuggee (#7636)

This commit is contained in:
Anshul Bansal
2019-08-25 21:22:38 +03:00
committed by Grzegorz Piwowarek
parent 3a5f594754
commit bcbff27129
2 changed files with 2 additions and 2 deletions

View File

@@ -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);
}
}