Examples of update()


Examples of de.fu_berlin.inf.dpp.concurrent.management.DocumentChecksum.update()

                    provider.connect(input);
                    doc = provider.getDocument(input);

                    final DocumentChecksum checksum = new DocumentChecksum(path);
                    checksum.bind(doc);
                    checksum.update();
                    Utils.runSafeSWTSync(log, new Runnable() {
                        public void run() {
                            sarosSession.activityCreated(new ChecksumActivity(
                                user, path, checksum.getHash(), checksum
                                    .getLength()));
View Full Code Here

Examples of de.fu_berlin.inf.dpp.vcs.VCSAdapter.update()

                    } else if (activityType == VCSActivity.Type.Disconnect) {
                        vcs.disconnect(project, revision != null, progress);
                    } else if (activityType == VCSActivity.Type.Switch) {
                        vcs.switch_(resource, url, revision, progress);
                    } else if (activityType == VCSActivity.Type.Update) {
                        vcs.update(resource, revision, progress);
                    } else {
                        log.error("VCS activity type not implemented yet.");
                    }
                    log.trace("progressMonitorDialog.run done");
                }
View Full Code Here

Examples of de.iritgo.aktera.hibernate.StandardDao.update()

          else
          {
            StandardDao standardDao = (StandardDao) SpringTools.getBean(StandardDao.ID);
            Object bean = persistents.get(aPersistentConfig.getAttribute("id"));

            standardDao.update(bean);
          }
        }
      }
    }
    catch (ConfigurationException x)
View Full Code Here

Examples of de.iritgo.aktera.persist.Persistent.update()

      if (u.find())
      {
        u.setField(FLD_NAME, user.get(User.Property.NAME));
        u.setField(FLD_PASSWORD, user.get(User.Property.PASSWORD));
        u.setField(FLD_EMAIL, user.get(User.Property.EMAIL));
        u.update();
      }
      else
      {
        throw new UserMgrException("Cannot update, user not found");
      }
View Full Code Here

Examples of de.iritgo.aktera.persist.UpdateHandler.update()

    try
    {
      connection = dataSourceComponent.getConnection();
      UpdateHandler handler = new UpdateHandler();
      handler.setConnection(connection);
      handler.update("ALTER TABLE version ALTER COLUMN name TYPE varchar(255)");
      handler.update("UPDATE version set name='iritgo-aktera-address' where name='svc-address' and type='M'");
      handler.update("UPDATE version set name='iritgo-aktera-aktario' where name='svc-aktario' and type='M'");
      handler
              .update("UPDATE version set name='iritgo-aktera-authentication' where name='svc-authentication-persist' and type='M'");
      handler
View Full Code Here

Examples of de.willuhn.jameica.gui.util.ScrolledContainer.update()

    this.add = new Button("  +  ",new Action() {
      public void handleAction(Object context) throws ApplicationException
      {
        int size = fields.size();
        createLine(container,null,size,readonly);
        container.update();
        add.setEnabled(!readonly && size+3 < maxusage);
      }
    });
    this.add.setEnabled(!readonly && size+3 <= maxusage);
   
View Full Code Here

Examples of de.willuhn.jameica.reminder.ReminderStorageProvider.update()

        reminder.setData("order.id",order.getID());
        reminder.setReminderInterval(interval);
       
        if (uuid != null) // Update
        {
          provider.update(uuid,reminder);
        }
        else // Add
        {
          uuid = provider.add(reminder);
          // UUID des Reminders speichern
View Full Code Here

Examples of devplugin.PluginTreeNode.update()

    PluginTreeNode root = getRootNode();
    Program[] progs = root.getPrograms();
    for (Program program : progs) {
      program.mark(this);
    }
    root.update();
    root.addAction(new EmptyQueueAction());
  }

  public void handleTvBrowserStartFinished() {
    Program[] programs = getRootNode().getPrograms();
View Full Code Here

Examples of dovetaildb.apiservice.ApiService.update()

        entry.put("id", req.id);
      }
      api.insert(req.bagName, entry);
    } else if (req.action == "update") {
      Map<String,Object> entry = (Map<String,Object>)Util.jsonDecode(req.request.getParameter("entry"));
      api.update(req.bagName, req.id, entry);
    } else if (req.action == "remove") {
      api.remove(req.bagName, req.id);
    }
    return returnVal;
  }
View Full Code Here

Examples of easyJ.business.proxy.CompositeDataProxy.update()

        StringBuffer xml = new StringBuffer("<result>");
        try {
            if (request.getParameter("flower") != null) {

                pr.setGoodNum(new Long(pr.getGoodNum().intValue() + 1));
                cdp.update(pr);
                pre.setIsGood("Y");
                sdp.create(pre);
                xml
                        .append("<message>success</message><choose>flower</choose><problemreasonId>"
                                + pre.getProblemreasonId()
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.