Package com.coherentlogic.usaspending.client.core.domain

Examples of com.coherentlogic.usaspending.client.core.domain.Agency


        Long rank = Long.valueOf(rankText);

        String valueText = reader.getValue();
        BigDecimal value = new BigDecimal (valueText);

        Agency agency = new Agency ();

        agency.setId(id);
        agency.setName(name);
        agency.setRank(rank);
        agency.setValue(value);

        return agency;
    }
View Full Code Here

TOP

Related Classes of com.coherentlogic.usaspending.client.core.domain.Agency

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.