Package com.cxy.redisclient.presentation.zset

Examples of com.cxy.redisclient.presentation.zset.NewZSetDialog


    else
      treeItem = getTreeItemByTableItem((TableItem) itemsSelected[0]);

    parseContainer(treeItem, cinfo);

    NewZSetDialog dialog = new NewZSetDialog(shell, iconImage,
        cinfo.getId(), cinfo.getServerName(), cinfo.getDb(),
        cinfo.getContainerStr());
    ZSetInfo info = (ZSetInfo) dialog.open();
    if (info != null) {
      service6.add(cinfo.getId(), cinfo.getDb(), info.getKey(),
          info.getValues(), info.getTtl());
      treeItem.setData(ITEM_OPENED, false);
      dbContainerTreeItemSelected(treeItem, false);
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.presentation.zset.NewZSetDialog

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.