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

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


    @Override
    public Object unmarshal(
        HierarchicalStreamReader reader,
        UnmarshallingContext context
    ) {
        FiscalYear fiscalYear = new FiscalYear ();

        String year = reader.getAttribute(YEAR);

        fiscalYear.setYear(year);

        String textValue = reader.getValue();

        BigDecimal value = new BigDecimal(textValue);

        fiscalYear.setValue(value);

        return fiscalYear;
    }
View Full Code Here

TOP

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

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.