You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The annotation/quick‑fix hover now includes a “Javadoc” proposal that opens the Javadoc information pop‑up for the Java element referenced by the annotation.
39
+
40
+
You can now view an element’s API documentation directly from an annotation hover without navigating to the element’s source file.
41
+
42
+
Previously annotation hover took precedence and blocked the usual Javadoc pop‑up for the element under the annotation.
43
+
To read the Javadoc you had to open or navigate to the original Java source.
44
+
45
+
The fix removes that friction.
46
+
47
+
#### Annotation Hover Javadoc Behavior
48
+
- When an annotation/quick‑fix hover is shown and the annotation refers to a Java element that has Javadoc, a “Show Javadoc” entry appears in the hover’s proposals list.
49
+
- Activating the proposal opens the standard Javadoc information control (the same browser‑based Javadoc pop‑up used elsewhere).
50
+
- The Javadoc pop‑up replaces the annotation hover for a natural, contextual display.
51
+
- The Javadoc pop‑up is closed automatically when the user clicks outside — preventing stale pop‑ups.
52
+
53
+
New Show Javadoc proposal in annotation hover
54
+
55
+

56
+
57
+
Javadoc pop‑up shown after activating the proposal
58
+
59
+

60
+
29
61
<!--
30
62
---
31
63
## Java Views and Dialogs
@@ -44,22 +76,23 @@ In previous releases, this option automatically disabled code folding.
44
76
## Debugger
45
77
46
78
47
-
### Improved Highlighting for Inline Chained Lambdas
79
+
### Improved Highlighting For Inline Chained Lambdas
48
80
49
81
<details>
50
82
<summary>Contributors</summary>
51
83
52
84
-[Sougandh S](https://github.com/SougandhS)
53
85
</details>
54
86
55
-
56
87
Building on the `inline lambda breakpoint` support added in **Eclipse 4.38**, the Java debugger now highlights the specific inline lambda expression when it is suspended.
57
-
Previously, selecting or focusing a lambda stack frame in a chained expression highlighted the entire line, making it difficult to identify the exact lambda.
88
+
89
+
Previously, selecting or focusing a lambda stack frame in a chained expression highlighted the entire line, making it difficult to identify the exact lambda.
90
+
58
91
Now only the suspended lambda is highlighted, making it much easier to follow execution in complex chained expressions.
0 commit comments