Thank Marc for replying here,
So, Jacoco knows which line is coverable or not.

ExecutionDataClient.java has only 44, 45, 49, 50, 52, 54, 55, 58, 59, 60, 63, 64, and 65 are the actual COVERABLE lines among all the lines in that file, right?
Rest lines don't contribute to Coverage as they are "non-executable" code like "{}", "imports", "declaration", right?
My use case here is I have 2 jacoco reports one from last month and one of the present dates and I know the SCM diff b/w the two versions of code. I want to now know what's the delta code covered and don't want to consider the "non-executable" lines as it will show wrong values.
So, is there any specific place/API/report which directly gives the information as the above picture gives me instead of parsing the XML and then doing the calculations.