Package com.renren.api.client.services

Examples of com.renren.api.client.services.BaseService


        this.statusService = new StatusService(this.renrenApiInvoker);
    }


    public BaseService getService(String clazz){
        BaseService baseService=null;
        try {
            baseService=(BaseService) Class.forName(clazz).newInstance();
        } catch (InstantiationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.renren.api.client.services.BaseService

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.