Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-01-10 17:43:08 +0000
committerDarin Wright2006-01-10 17:43:08 +0000
commite1cd44a0ee38168d30084fea2f5347e771c27ee8 (patch)
tree46b6ec5036a48d13e5c3b49b7f6a279194cfd00c /org.eclipse.debug.ui
parent851c8d00f28f62a0d83c2736270346d9de530fd8 (diff)
downloadeclipse.platform.debug-e1cd44a0ee38168d30084fea2f5347e771c27ee8.tar.gz
eclipse.platform.debug-e1cd44a0ee38168d30084fea2f5347e771c27ee8.tar.xz
eclipse.platform.debug-e1cd44a0ee38168d30084fea2f5347e771c27ee8.zip
javadoc fix
Diffstat (limited to 'org.eclipse.debug.ui')
-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