Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java47
1 files changed, 26 insertions, 21 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java
index 649fa9e6d..15743c9ac 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IJavaFieldVariable.java
@@ -10,56 +10,63 @@
*******************************************************************************/
package org.eclipse.jdt.debug.core;
-
import org.eclipse.debug.core.DebugException;
/**
* A variable that contains the value of an instance or class variable.
+ *
* @see org.eclipse.debug.core.model.IVariable
* @since 2.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 IJavaFieldVariable extends IJavaVariable {
-
+
/**
* Returns whether this variable is declared as transient.
- *
+ *
* @return whether this variable has been declared as transient
- * @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 boolean isTransient() throws DebugException;
-
+
/**
* Returns whether this variable is declared as volatile.
*
* @return whether this variable has been declared as volatile
- * @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 boolean isVolatile() throws DebugException;
-
+
/**
* Returns the type that declares this variable.
*
* @return the type that declares this variable
*/
- public IJavaType getDeclaringType();
-
+ public IJavaType getDeclaringType();
+
/**
- * Returns the object that contains this field variable, or <code>null</code>
- * if no object contains this field variable (static field variable).
+ * Returns the object that contains this field variable, or
+ * <code>null</code> if no object contains this field variable (static field
+ * variable).
*
* @return the object that contains this field variable
* @since 3.0
*/
public IJavaObject getReceiver();
-
+
/**
* Returns the type that contains this field variable.
*
@@ -67,7 +74,5 @@ public interface IJavaFieldVariable extends IJavaVariable {
* @since 3.0
*/
public IJavaReferenceType getReceivingType();
-
-}
-
+}

Back to the top