Package com.omertron.imdbapi.wrapper

Examples of com.omertron.imdbapi.wrapper.WrapperResponse


        }
        return null;
    }

    public static ResponseDetail getResponse(String function, Map<String, String> args) {
        WrapperResponse wr = getWrapper(WrapperResponse.class, function, args);
        if (wr == null) {
            return null;
        } else {
            return wr.getResponse();
        }
    }
View Full Code Here

TOP

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

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.