Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java38
1 files changed, 22 insertions, 16 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java
index 6992cc013..95c08c2ca 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaType.java
@@ -10,16 +10,16 @@
*******************************************************************************/
package org.eclipse.jdt.debug.core;
-
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IDebugElement;
-
+
/**
- * The type of a value on a Java debug target - a primitive
- * data type, class, interface, or array.
+ * The type of a value on a Java debug target - a primitive data type, class,
+ * interface, or array.
* <p>
* Since 3.2, an <code>IJavaType</code> is also a debug element
* </p>
+ *
* @see IJavaValue
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
@@ -27,24 +27,30 @@ import org.eclipse.debug.core.model.IDebugElement;
public interface IJavaType extends IDebugElement {
/**
* Returns the JNI-style signature for this type.
- *
+ *
* @return signature
- * @exception DebugException if this method fails. Reasons include:
- * <ul><li>Failure communicating with the VM. The DebugException's
- * status code contains the underlying exception responsible for
- * the failure.</li></ul>
+ * @exception DebugException
+ * if this method fails. Reasons include:
+ * <ul>
+ * <li>Failure communicating with the VM. The
+ * DebugException's status code contains the underlying
+ * exception responsible for the failure.</li>
+ * </ul>
*/
public String getSignature() throws DebugException;
-
+
/**
- * Returns the name of this type. For example, <code>"java.lang.String"</code>.
+ * Returns the name of this type. For example,
+ * <code>"java.lang.String"</code>.
*
* @return the name of this type
- * @exception DebugException if this method fails. Reasons include:
- * <ul><li>Failure communicating with the VM. The DebugException's
- * status code contains the underlying exception responsible for
- * the failure.</li></ul>
+ * @exception DebugException
+ * if this method fails. Reasons include:
+ * <ul>
+ * <li>Failure communicating with the VM. The
+ * DebugException's status code contains the underlying
+ * exception responsible for the failure.</li>
+ * </ul>
*/
public String getName() throws DebugException;
}
-

Back to the top