Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerAnnotation.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerAnnotation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerAnnotation.java
index 399c203c9..38443e0d9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerAnnotation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerAnnotation.java
@@ -25,10 +25,12 @@ public class InstructionPointerAnnotation extends DynamicInstructionPointerAnnot
private Image fImage;
/**
+ * Constructs an instruction pointer image.
*
- * @param frame
- * @param markerAnnotationSpecificationId
- * @param text
+ * @param frame stack frame the instruction pointer is associated with
+ * @param annotationType the type of annotation to display (annotation identifier)
+ * @param text the message to display with the annotation as hover help
+ * @param image the image used to display the annotation
*/
public InstructionPointerAnnotation(IStackFrame frame, String annotationType, String text, Image image) {
super(frame, annotationType, text);

Back to the top