Examples of updateEntity()


Examples of buildcraft.transport.TileGenericPipe.updateEntity()

      powered = container.worldObj.isBlockIndirectlyGettingPowered(container.xCoord, container.yCoord, container.zCoord);

    if (lastPowered != powered) {
      for (TileGenericPipe pipe : neighbours) {
        pipe.scheduleNeighborChange();
        pipe.updateEntity();
      }
    }
  }

  @Override
View Full Code Here

Examples of buildcraft.transport.TileGenericPipe.updateEntity()

      powered = container.worldObj.isBlockIndirectlyGettingPowered(container.xCoord, container.yCoord, container.zCoord);

    if (lastPowered != powered) {
      for (TileGenericPipe pipe : neighbours) {
        pipe.scheduleNeighborChange();
        pipe.updateEntity();
      }
    }
  }

  @Override
View Full Code Here

Examples of buildcraft.transport.TileGenericPipe.updateEntity()

      powered = container.worldObj.isBlockIndirectlyGettingPowered(container.xCoord, container.yCoord, container.zCoord);

    if (lastPowered != powered) {
      for (TileGenericPipe pipe : neighbours) {
        pipe.scheduleNeighborChange();
        pipe.updateEntity();
      }
    }
  }

  @Override
View Full Code Here

Examples of by.bsuir.hypermarket.dao.concrete.UserDao.updateEntity()

      int userUid = Integer.parseInt(request.getParameter(Commands.INVERT_BAN_USER_UID));
      UserDao userDao = new UserDao();
      User userToBan = userDao.findEntityById(userUid);
      if (userToBan.getLogin() != null) {
        userToBan.setBan(!userToBan.isBan());
        userDao.updateEntity(userToBan);
        List<User> users = userDao.findAll();
        request.setAttribute(Commands.SHOW_USERS_LIST, users);
      }
    } catch (NumberFormatException e) {
      log.error("Can not parse user id", e);
View Full Code Here

Examples of com.centraview.contact.contactfacade.ContactFacade.updateEntity()

        path.append("&closeWindow=false");
        forward = new ActionForward(path.toString(), true);
      }
    } else {
      try {
        contactFacade.updateEntity(entityVO, individualId);
      } catch (Exception e) {
        logger.error("[execute] Exception thrown.", e);
        throw new ServletException(e);
      }
      path.append(mapping.findForward("viewEntity").getPath());
View Full Code Here

Examples of com.centraview.contact.contactfacade.ContactFacade.updateEntity()

      }
    }

     // update the surviving record information.
    try {
      remoteContactFacade.updateEntity(survivor, individualId);
      String entityIDs[] = new String[1];
      entityIDs[0] = entityId + "";
      // Reason for adminIndividualID to set as -1. We know that admin is a super user
      // he can move any thing. thats why its hard coded to -1
      int adminIndividualID = -1;
View Full Code Here

Examples of com.centraview.contact.contactfacade.ContactFacadeLocal.updateEntity()

                   ((MethodOfContactVO) vec.elementAt(j)).updated(true);
                   break;
                 }
               }
             }
             entL.updateEntity(evo,indID);
             logger.info("Updated " + evo.getContactID() + " entity record");
           }
         }catch(Exception e)
         {
           logger.debug("Error in updating Entity : "+e);
View Full Code Here

Examples of net.minecraft.src.WorldServer.updateEntity()

               this.mcServer.getConfigurationManager().serverUpdateMountedMovingPlayer(this.playerEntity);
               lastPosX = this.playerEntity.posX;
               lastPosY = this.playerEntity.posY;
               lastPosZ = this.playerEntity.posZ;
               setPosition(lastPosX, lastPosY, lastPosZ);
               var2.updateEntity(this.playerEntity);
               return;
            }

            if (this.playerEntity.isPlayerSleeping())
            {
View Full Code Here

Examples of net.minecraft.src.WorldServer.updateEntity()

            if (this.playerEntity.isPlayerSleeping())
            {
               this.playerEntity.onUpdateEntity();
               this.playerEntity.setPositionAndRotation(lastPosX, lastPosY, lastPosZ, this.playerEntity.rotationYaw, this.playerEntity.rotationPitch);
               var2.updateEntity(this.playerEntity);
               return;
            }

            var3 = this.playerEntity.posY;
            lastPosX = this.playerEntity.posX;
View Full Code Here

Examples of net.minecraft.tileentity.TileEntity.updateEntity()

        // air.

        TileEntity e = context.world().getTileEntity(x, y, z);

        if (e != null) {
          e.updateEntity();
        }
      } catch (Throwable t) {
        t.printStackTrace();
        context.world().setBlockToAir(x, y, z);
      }
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.