Package com.softwaremill.common.cdi.objectservice

Examples of com.softwaremill.common.cdi.objectservice.OS


        this.serviceClass = serviceClass;
    }

    @Override
    public OS f(Object obj) {
        OS objectService = (OS) extension.serviceForObject(obj.getClass(), serviceClass);
        //noinspection unchecked
        objectService.setServiced(obj);
        return objectService;
    }
View Full Code Here

TOP

Related Classes of com.softwaremill.common.cdi.objectservice.OS

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.