Examples of update()


Examples of pneumaticCraft.client.gui.INeedTickUpdate.update()

    public void tickEnd(TickEvent.ClientTickEvent event){
        if(event.phase == TickEvent.Phase.END) {
            for(int i = 0; i < updatedObjects.size(); i++) {
                INeedTickUpdate updatedObject = updatedObjects.get(i).get();
                if(updatedObject != null) {
                    updatedObject.update();
                } else {
                    updatedObjects.remove(i);
                    i--;
                }
            }
View Full Code Here

Examples of pneumaticCraft.client.render.pneumaticArmor.hacking.HackableHandler.HackingEntityProperties.update()

    public void worldTick(TickEvent.WorldTickEvent event){
        if(event.phase == TickEvent.Phase.END) {
            for(Entity entity : (List<Entity>)event.world.loadedEntityList) {
                HackingEntityProperties hackingProps = (HackingEntityProperties)entity.getExtendedProperties("PneumaticCraftHacking");
                if(hackingProps != null) {
                    hackingProps.update(entity);
                } else {
                    Log.warning("Extended entity props HackingEntityProperties couldn't be found in the entity " + entity.getCommandSenderName());
                }
            }
        }
View Full Code Here

Examples of ptolemy.actor.parameters.PortParameter.update()

                if (_debugging) {
                    _debug("** Updating PortParameter: " + port.getName());
                }

                parameter.update();
                continue;
            }

            if ((port.getWidth() > 0) && port.hasToken(0)) {
                Token token = port.get(0);
View Full Code Here

Examples of railo.loader.engine.CFMLEngineFactory.update()

      checkWriteAccess();
        ConfigServerImpl cs = (ConfigServerImpl) config.getConfigServer(password);
        CFMLEngineFactory factory = cs.getCFMLEngine().getCFMLEngineFactory();
        synchronized(factory){
          try {
              factory.update(cs.getPassword());
          }
          catch (Exception e) {
              throw Caster.toPageException(e);
          }
        }
View Full Code Here

Examples of railo.runtime.crypt.SHA1.update()

    // hash down the password to a 160bit key

    SHA1 hasher = new SHA1();

    hasher.update(sPassword);

    hasher.finalize();


View Full Code Here

Examples of railo.runtime.type.scope.storage.db.SQLExecutor.update()

      DataSource ds;
      if(pc!=null) ds=((PageContextImpl)pc).getDataSource(datasourceName);
      else ds=config.getDataSource(datasourceName);
      dc=pool.getDatasourceConnection(null,ds,null,null);
      SQLExecutor executor=SQLExecutionFactory.getInstance(dc);
      executor.update(config, cfid,appName, dc, getType(), sct,getTimeSpan(),log);
    }
    catch (Throwable t) {
      ScopeContext.error(log, t);
    }
    finally {
View Full Code Here

Examples of realcix20.utils.DAO.update()

        try {
            KeyPairGenerator keyGen = KeyPairGenerator.getInstance(KEY_GENERATE_ALGORITHM);
            keyGen.initialize(1024);
            KeyPair key = keyGen.generateKeyPair();
            DAO dao = DAO.getInstance();
            dao.update(Resources.GENERATE_KEY_SQL);
            dao.setObject(1, (Object)key.getPublic());
            dao.setObject(2, (Object)key.getPrivate());
            dao.executeUpdate();
        } catch (Exception e) {
            e.printStackTrace();
View Full Code Here

Examples of rtype.entity.Entity.update()

   
    for (int i=0 ; i < entities.size() ; i++)
      {
        e = entities.get(i);
        e.updateTick();
        e.update();
       
      }
  }
}
View Full Code Here

Examples of ru.vagrant_ai.questionmarkgame.obj.add.Light.update()

  public void update()
  {
    for (int i = 0; i < light_array.size(); ++i) //light update
    {
      Light element = light_array.get(i);
      element.update();
    }
    for (int i = 0; i < money_array.size(); ++i) //money update
    {
      Money element = money_array.get(i);
      element.update();
View Full Code Here

Examples of ru.vagrant_ai.questionmarkgame.obj.add.Money.update()

      element.update();
    }
    for (int i = 0; i < money_array.size(); ++i) //money update
    {
      Money element = money_array.get(i);
      element.update();
    }
    for (int i = 0; i < money_array.size(); ++i) //money remove
    {
      Money element = money_array.get(i);
      if (element.state == 0)
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.