Package com.peusoft.ptcollect.core.persistance.domain

Examples of com.peusoft.ptcollect.core.persistance.domain.Configuration


    /**
     * Initializes the attributes of the bean with 0.
     * Is called by Spring container.
     */
    protected void init() {
        Configuration config = getConfigDAO().getConfiguration();
        int scale = config.getScale();
        setNumberOfDays(
                BigDecimal.ZERO.setScale(scale, ROUND_METHOD));
        setNumberOfHours(
                BigDecimal.ZERO.setScale(scale, ROUND_METHOD));
        setIncomes(
View Full Code Here

TOP

Related Classes of com.peusoft.ptcollect.core.persistance.domain.Configuration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.