Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java23
1 files changed, 12 insertions, 11 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java
index 106cf6279..5d1249db1 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaClassPrepareBreakpoint.java
@@ -13,31 +13,32 @@ package org.eclipse.jdt.debug.core;
import org.eclipse.core.runtime.CoreException;
/**
- * A breakpoint that suspends execution when a class is prepared in
- * a target VM.
+ * A breakpoint that suspends execution when a class is prepared in a target VM.
+ *
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
public interface IJavaClassPrepareBreakpoint extends IJavaBreakpoint {
-
+
/**
- * Constant indicating a class prepare breakpoint is associated with a
- * class type.
+ * Constant indicating a class prepare breakpoint is associated with a class
+ * type.
*/
public static final int TYPE_CLASS = 0;
/**
* Constant indicating a class prepare breakpoint is associated with an
- * interface type.
- */
+ * interface type.
+ */
public static final int TYPE_INTERFACE = 1;
-
+
/**
- * Returns a constant indicating what kind of type this breakpoint
- * is associated with.
+ * Returns a constant indicating what kind of type this breakpoint is
+ * associated with.
*
* @return one of <code>TYPE_CLASS</code> or <code>TYPE_INTERFACE</code>
- * @throws CoreException if unable to retrieve the attribute
+ * @throws CoreException
+ * if unable to retrieve the attribute
*/
public int getMemberType() throws CoreException;
}

Back to the top