Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java38
1 files changed, 21 insertions, 17 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java
index d53905266..a2d44f0d9 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaArrayType.java
@@ -10,11 +10,11 @@
*******************************************************************************/
package org.eclipse.jdt.debug.core;
-
import org.eclipse.debug.core.DebugException;
/**
* The type of an array on a Java debug target.
+ *
* @see IJavaValue
* @since 2.0
* @noimplement This interface is not intended to be implemented by clients.
@@ -24,30 +24,34 @@ import org.eclipse.debug.core.DebugException;
public interface IJavaArrayType extends IJavaReferenceType {
/**
- * Returns a new instance of an array of this type,
- * with the specified length.
- *
- * @param size the length of the new array
+ * Returns a new instance of an array of this type, with the specified
+ * length.
+ *
+ * @param size
+ * the length of the new array
* @return a new array of the specified length
- * @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 IJavaArray newInstance(int size) throws DebugException;
/**
* Returns the type of the elements in this array.
- *
+ *
* @return type
- * @exception DebugException if this method fails. Reasons include:<ul>
- * <li>Failure communicating with the VM. The exception'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 exception's
+ * status code contains the underlying exception responsible
+ * for the failure.</li>
+ * </ul>
*/
public IJavaType getComponentType() throws DebugException;
}
-

Back to the top