/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.usp.nds.remote.conversao; import org.apache.commons.beanutils.Converter; /** * * @author 316030740116 */ public class IntegerConverter implements Converter { public Integer convert(Class type, Object string) { try { if (string == null || string.toString().isEmpty()) { return null; } return Integer.parseInt(string.toString()); } catch (NumberFormatException e) { return null; } } }