Examples of FiscalYear


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
Copyright © 2018 www.massapi.com. 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.