Package com.cibuddy.ibuddy

Examples of com.cibuddy.ibuddy.IBuddySecondGen


    public IBuddyLightHandle(ServiceReference hidServiceRef) throws IOException {
        deviceInfo = (HIDDeviceInfo) Activator.getBundleContext().getService(hidServiceRef);
        if(deviceInfo.getProduct_id() == FigureType.IBUDDY_GENERATION_1.getType()){
            buddyFigure = new IBuddyFirstGen(deviceInfo);
        } else if(deviceInfo.getProduct_id() == FigureType.IBUDDY_GENERATION_2.getType()){
            buddyFigure = new IBuddySecondGen(deviceInfo);
        } else if(deviceInfo.getProduct_id() == FigureType.IBUDDY_BLACK.getType()){
            buddyFigure = new IBuddyBlack(deviceInfo);
        } else if (deviceInfo.getProduct_id() == FigureType.DEVIL.getType()){
            buddyFigure = new IBuddyDevil(deviceInfo);
        } else if (deviceInfo.getProduct_id() == FigureType.QUEEN.getType()){
View Full Code Here

TOP

Related Classes of com.cibuddy.ibuddy.IBuddySecondGen

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.