Package com.cxy.redisclient.presentation.server

Examples of com.cxy.redisclient.presentation.server.UpdateServerDialog


  private void updateServer() {
    int id = (Integer) itemsSelected[0].getData(NODE_ID);

    Server server = service1.listById(id);
    UpdateServerDialog dialog = new UpdateServerDialog(shell, iconImage,
        server);
    server = (Server) dialog.open();
    if (server != null) {
      service1.update(id, server.getName(), server.getHost(),
          server.getPort(), server.getPassword());
      TreeItem treeItem = null;
      if (itemsSelected[0] instanceof TableItem) {
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.presentation.server.UpdateServerDialog

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.