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

springdao.support.IntDaoPropertyEditor Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package springdao.support;

import org.springframework.util.StringUtils;
import springdao.RepositoryManager;

/**
 *
 * @author Kent Yeh
 */
public class IntDaoPropertyEditor extends DaoPropertyEditor {

    public IntDaoPropertyEditor(RepositoryManager daoManager) {
        super(daoManager);
    }

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        try {
            setValue(StringUtils.hasText(text) ? getDaoManager().findByPrimaryKey(Integer.valueOf(text)) : null);
        } catch (RuntimeException e) {
            setValue(null);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy