All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.gwt.test.internal.patchers.NumberFormatPatcher Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.internal.patchers;

import com.google.gwt.i18n.client.NumberFormat;
import com.googlecode.gwt.test.patchers.PatchClass;
import com.googlecode.gwt.test.patchers.PatchMethod;

import java.math.BigDecimal;

@PatchClass(NumberFormat.class)
class NumberFormatPatcher {

    @PatchMethod
    static String toPrecision(double d, int digits) {
        return new BigDecimal(d).setScale(digits, BigDecimal.ROUND_DOWN).toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy