Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java30
1 files changed, 18 insertions, 12 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java
index f3f2c98d1..2707e889e 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIPlaceholderValue.java
@@ -11,50 +11,56 @@
package org.eclipse.jdt.internal.debug.core.model;
/**
- * This class is used to create a variable/value that displays a warning message to the user.
- * Currently used to inform users that references are not available for the current VM.
- * It extends <code>JDINullValue</code> so that most actions will ignore it, but returns the
- * message instead of "null" for it's value.
+ * This class is used to create a variable/value that displays a warning message
+ * to the user. Currently used to inform users that references are not available
+ * for the current VM. It extends <code>JDINullValue</code> so that most actions
+ * will ignore it, but returns the message instead of "null" for it's value.
*
* @since 3.3
*/
public class JDIPlaceholderValue extends JDINullValue {
private String fMessage;
-
+
/**
* Constructor, passes the debug target to the super class.
- * @param target debug target this value belongs to
+ *
+ * @param target
+ * debug target this value belongs to
*/
public JDIPlaceholderValue(JDIDebugTarget target, String message) {
super(target);
fMessage = message;
}
-
+
/**
* @return the message supplied in the constructor
* @see org.eclipse.jdt.internal.debug.core.model.JDINullValue#getValueString()
*/
+ @Override
public String getValueString() {
return fMessage;
}
-
+
/**
* @return the message supplied in the constructor
* @see org.eclipse.jdt.internal.debug.core.model.JDINullValue#toString()
*/
+ @Override
public String toString() {
return fMessage;
}
-
+
/**
- * Returns signature for a java string object so that the string message passed in
- * the constructor is displayed in the detail pane.
+ * Returns signature for a java string object so that the string message
+ * passed in the constructor is displayed in the detail pane.
+ *
* @return signature for a java string object
* @see org.eclipse.jdt.internal.debug.core.model.JDINullValue#getSignature()
*/
+ @Override
public String getSignature() {
return "Ljava/lang/String;"; //$NON-NLS-1$
}
-
+
}

Back to the top