Examples of IndicatorTopics


Examples of com.coherentlogic.wb.client.core.domain.IndicatorTopics

    private Indicator indicator = null;

    static IndicatorTopics createIndicatorTopics () {

        IndicatorTopics results = new IndicatorTopics ();

        List<IndicatorTopic> indicatorTopicList =
            new ArrayList <IndicatorTopic> ();

        IndicatorTopic indicatorTopic = new IndicatorTopic ();

        indicatorTopic.setId(DataPointCountryDAOTest.ID);
        indicatorTopic.setValue(DataPointCountryDAOTest.VALUEX);

        results.setIndicatorTopicList(indicatorTopicList);

        results.setPage(0);
        results.setPages(1);
        results.setPerPage(2);
        results.setTotal(3);

        return results;
    }
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IndicatorTopics

            "data, and OECD National Accounts data files.";

        assertEquals (expectedSourceOrganization,
            firstIndicator.getSourceOrganization());

        IndicatorTopics indicatorTopics =
            firstIndicator.getIndicatorTopics();

        assertNotNull (indicatorTopics);

        List<IndicatorTopic> indicatorTopicList =
            indicatorTopics.getIndicatorTopicList();

        assertNotNull (indicatorTopicList);

        assertEquals(2,  indicatorTopicList.size());
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IndicatorTopics

            "http://www.iea.org/stats/index.asp), and World Bank PPP data.";

        assertEquals (expectedSourceOrganization,
            firstIndicator.getSourceOrganization());

        IndicatorTopics indicatorTopics =
            firstIndicator.getIndicatorTopics();

        assertNotNull (indicatorTopics);

        List<IndicatorTopic> indicatorTopicList =
            indicatorTopics.getIndicatorTopicList();

        assertNotNull (indicatorTopicList);

        assertEquals(1,  indicatorTopicList.size());
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IndicatorTopics

    @Override
    public Object unmarshal(
        HierarchicalStreamReader reader,
        UnmarshallingContext context
    ) {
        IndicatorTopics indicatorTopics = (IndicatorTopics)
            super.unmarshal(reader, context);

        return indicatorTopics;
    }
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.