Package com.cibuddy.ibuddy

Examples of com.cibuddy.ibuddy.IBuddyDevil


        } 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()){
            buddyFigure = new IBuddyQueen(deviceInfo);
        } else {
            LOG.warn("unsupported i-Buddy device. Falling back to default G2-Buddy for this details: "+deviceInfo);
            buddyFigure = new IBuddyGeneric(deviceInfo, "unknown iBuddy - handle as G2 device.");
View Full Code Here

TOP

Related Classes of com.cibuddy.ibuddy.IBuddyDevil

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.