Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java
index d4d534429..197b5cde2 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatTypeImpl.java
@@ -10,34 +10,34 @@
*******************************************************************************/
package org.eclipse.jdi.internal;
-
import com.sun.jdi.FloatType;
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 FloatTypeImpl extends PrimitiveTypeImpl implements FloatType {
/**
* Creates new instance.
*/
public FloatTypeImpl(VirtualMachineImpl vmImpl) {
- super("FloatType", vmImpl, "float" , "F"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ super("FloatType", vmImpl, "float", "F"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
-
+
/**
* @returns primitive type tag.
*/
+ @Override
public byte tag() {
return FloatValueImpl.tag;
}
-
+
/**
* @return Create a null value instance of the type.
*/
+ @Override
public Value createNullValue() {
return virtualMachineImpl().mirrorOf(0.0f);
}

Back to the top