Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1810 → Rev 1811

/tags/v1.5-muscadet/src/org/tela_botanica/client/util/UtilNombre.java
New file
0,0 → 1,11
package org.tela_botanica.client.util;
 
import com.google.gwt.i18n.client.NumberFormat;
 
public class UtilNombre {
public static String formaterEnEntier(double nombre) {
NumberFormat formatNbreEntier = NumberFormat.getFormat("#");
return formatNbreEntier.format(nombre);
}
}