Package com.cxy.redisclient.presentation.set

Examples of com.cxy.redisclient.presentation.set.SetDataContent


        content = new ListDataContent(tbtmNewItem, iconImage, cinfo.getId(),
            cinfo.getServerName(), cinfo.getDb(), key,
            I18nFile.LIST);
      } else if (type == NodeType.SET) {
        tbtmNewItem.setImage(setImage);
        content = new SetDataContent(tbtmNewItem, iconImage, cinfo.getId(),
            cinfo.getServerName(), cinfo.getDb(), key, I18nFile.SET);
      } else if (type == NodeType.SORTEDSET) {
        tbtmNewItem.setImage(zsetImage);
        content = new ZSetDataContent(tbtmNewItem, iconImage, cinfo.getId(),
            cinfo.getServerName(), cinfo.getDb(), key,
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.presentation.set.SetDataContent

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.