Package com.omertron.imdbapi.wrapper

Examples of com.omertron.imdbapi.wrapper.WrapperChartMoviemeter


     * Get the Chart Movie Meter
     *
     * @return
     */
    public List<ImdbChartMoviemeter> getChartMoviemeter() {
        WrapperChartMoviemeter wrapper = ApiBuilder.getWrapper(WrapperChartMoviemeter.class, "chart/moviemeter", Collections.<String,String>emptyMap());
        if (wrapper == null) {
            return Collections.emptyList();
        } else {
            return wrapper.getData().getChartMoviemeter();
        }
    }
View Full Code Here

TOP

Related Classes of com.omertron.imdbapi.wrapper.WrapperChartMoviemeter

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.