Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java
index 3327c8546..130b1ceaa 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerTypeImpl.java
@@ -10,34 +10,34 @@
*******************************************************************************/
package org.eclipse.jdi.internal;
-
import com.sun.jdi.IntegerType;
import com.sun.jdi.Value;
/**
- * this class implements the corresponding interfaces
- * declared by the JDI specification. See the com.sun.jdi package
- * for more information.
- *
+ * this class implements the corresponding interfaces declared by the JDI
+ * specification. See the com.sun.jdi package for more information.
+ *
*/
public class IntegerTypeImpl extends PrimitiveTypeImpl implements IntegerType {
/**
* Creates new instance.
*/
public IntegerTypeImpl(VirtualMachineImpl vmImpl) {
- super("IntegerType", vmImpl, "int" , "I"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ super("IntegerType", vmImpl, "int", "I"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
-
+
/**
* @returns primitive type tag.
*/
+ @Override
public byte tag() {
return IntegerValueImpl.tag;
}
-
+
/**
* @return Create a null value instance of the type.
*/
+ @Override
public Value createNullValue() {
return virtualMachineImpl().mirrorOf(0);
}

Back to the top