Package com.cxy.redisclient.presentation.key

Examples of com.cxy.redisclient.presentation.key.RenameKeysDialog.open()


    parseContainer(treeItem, cinfo);

    RenameKeysDialog dialog = new RenameKeysDialog(shell, iconImage,
        cinfo.getServerName(), cinfo.getDb(), cinfo.getContainerStr());
    RenameInfo rinfo = (RenameInfo) dialog.open();

    if (rinfo != null) {
      Set<String> result = service2.renameContainer(cinfo.getId(),
          cinfo.getDb(), cinfo.getContainerStr(),
          rinfo.getNewContainer(), rinfo.isOverwritten(),
View Full Code Here


    String key = cinfo.getContainerStr();
    key += itemsSelected[0].getText();

    RenameKeysDialog dialog = new RenameKeysDialog(shell, iconImage,
        cinfo.getServerName(), cinfo.getDb(), key);
    RenameInfo rinfo = (RenameInfo) dialog.open();

    if (rinfo != null) {
      boolean result = service2.renameKey(cinfo.getId(), cinfo.getDb(),
          key, rinfo.getNewContainer(), rinfo.isOverwritten());
      dbContainerTreeItemSelected(items[0], false);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.