Subversion Repositories eFlore/Applications.coel

Rev

Rev 948 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 948 Rev 949
1
package org.tela_botanica.client.util;
1
package org.tela_botanica.client.util;
2
 
2
 
3
import com.google.gwt.i18n.client.NumberFormat;
3
import com.google.gwt.i18n.client.NumberFormat;
4
 
4
 
5
public class UtilNombre {
5
public class UtilNombre {
6
	
6
	
7
	public static String formaterEnEntier(double nombre) {
7
	public static String formaterEnEntier(double nombre) {
8
		NumberFormat formatNbreEntier = NumberFormat.getFormat("#");
8
		NumberFormat formatNbreEntier = NumberFormat.getFormat("#");
9
		return formatNbreEntier.format(nombre);
9
		return formatNbreEntier.format(nombre);
10
	}
10
	}	
11
	
-
 
12
}
11
}