jdk-24/langtools/test/tools/javac/synthesize/Float.java
Jonathan Gibbons 7c754d9268 6627362: javac generates code that uses array.clone, which is not available on JavaCard
6627364: javac needs Float and Double on the bootclasspath even when not directly used
6627366: javac needs Cloneable and Serializable on the classpath even when not directly used

Reviewed-by: darcy
2008-08-01 15:23:18 -07:00

19 lines
277 B
Java

package java.lang;
public class Float extends Number
{
public static Float valueOf(float v) {
return new Float(v);
}
public Float(float v) {
value = v;
}
public float floatValue() {
return value;
}
private float value;
}