Examples of move()


Examples of br.com.objectos.rio.GentooPrepare.move()

    if (options.rio) {
      installer.rio();
    }

    if (options.extras) {
      installer.move();
      installer.symlink();
      installer.chmod();
      installer.useradd();
      installer.rcUpdate();
    }

Examples of ch.entwine.weblounge.common.repository.WritableContentRepository.move()

      // Check if the resource has been moved
      String currentPath = currentResource.getURI().getPath();
      String newPath = StringUtils.trimToNull(resource.getURI().getPath());
      if (currentPath != null && newPath != null && !currentPath.equals(newPath)) {
        contentRepository.move(currentResource.getURI(), newPath, true);
      }
    } catch (IOException e) {
      logger.warn("Error reading udpated resource {} from request", resourceURI);
      throw new WebApplicationException(Status.INTERNAL_SERVER_ERROR);
    } catch (ParserConfigurationException e) {

Examples of ch.sahits.game.openpatrician.model.building.ITradingOffice.move()

      int movedAmount = city.getCity().move(ware, -amount2Move,city.getPlayer());
      if (amount2Move!=-movedAmount){
        avgPrice = ware.computeBuyPrice(city.getCity().getWare(ware).getAmount()+movedAmount, movedAmount);
        amount2Move=movedAmount;
      }
      int loaded = office.move(ware, amount2Move,avgPrice);
      city.getPlayer().updateCash(-avgPrice*loaded);
    }
  }
}
 

Examples of com.alibaba.wasp.client.WaspAdmin.move()

    ClusterStatus status = admin.getClusterStatus();
    List<ServerName> serverNames = new ArrayList<ServerName>(status.getServers());

    egis = admin.getOnlineEntityGroups(serverNames.get(0));

    admin.move(egis.get(0).getEncodedNameAsBytes(), Bytes.toBytes(serverNames.get(1).getServerName()));

    stat.execute("INSERT INTO user123 (user_id, photo_id) VALUES (6, 6)");
    rs = stat.executeQuery("select * from user123 where photo_id=6");
    assertTrue(rs.next());
    assertTrue(rs.getLong("user_id") == 6);

Examples of com.anotherbigidea.flash.movie.Shape.move()

            for (int count = 1; count < points_.size(); count += speed)
            {
                line_shape = new Shape();
                line_shape.defineLineStyle(stroke_.getLineWidth(), alpha_color);
                line_shape.setLineStyle(1);
                line_shape.move(point[0].x, point[0].y);
               
                // draw points for this step ( amount of points = speed + 1 = draw_points )
                for (int point_count = 1; point_count < draw_points; point_count++ )
                {
                    if (count + point_count < points_.size())

Examples of com.eteks.sweethome3d.model.HomePieceOfFurniture.move()

    assertEquals("Home doesn't contain 2 pieces", 2, pieces.size());
    assertEquals("Home doesn't contain 2 selected items", 2, this.home.getSelectedItems().size());
    assertGroupActionsEnabled(true, false);
    HomePieceOfFurniture piece1 = pieces.get(0);
    HomePieceOfFurniture piece2 = pieces.get(1);
    piece2.move(100, 100);
    piece2.setElevation(100);
   
    // 2. Group selected furniture
    runAction(HomePane.ActionType.GROUP_FURNITURE);
    // Check home contains one selected piece that replaced added pieces

Examples of com.evelopers.unimod.glayout.fast.extensions.VertexExt.move()

            VertexExt ve         = element.getVertexext();

            if (ve != null) {
                if (ve.getLeftTop()
                          .getX() >= x) {
                    ve.move(new Point(w + 1, 0));

                    if (element.getProperty(Constant.LAYER_KEY) != null) {
                        SimpleGraph elg =
                            (SimpleGraph) element.getProperty(Constant.LAYER_KEY);
                        moveSG(elg, w + 1, 0);

Examples of com.google.gdt.eclipse.designer.gxt.databinding.model.bindings.BindingInfo.move()

    //
    BindingInfo binding = (BindingInfo) ibinding;
    // do reorder
    m_bindings.remove(sourceIndex);
    m_bindings.add(targetIndex, binding);
    binding.move(m_bindings);
    // save
    saveEdit();
  }

  private int configureMoveUpDown(IBindingInfo ibinding, int sourceIndex, int targetIndex) {

Examples of com.haulmont.yarg.formatters.impl.xlsx.CellReference.move()

            resultCells.add(newCell);

            CellReference tempRef = new CellReference(templateRange.getSheet(), templateCell);
            CellReference newRef = new CellReference(templateRange.getSheet(), newCell.getR());
            newRef.move(newRow.getR().intValue(), newRef.getColumn());
            if (bandData.getOrientation() == BandOrientation.VERTICAL) {
                newRef.shift(0, previousRangesRightOffset);

            }
            newCell.setR(newRef.toReference());

Examples of com.jme3.scene.CameraNode.move()

        cam.update();
       
        CameraNode camNode = new CameraNode("camera", cam);
        camNode.setControlDir(CameraControl.ControlDirection.SpatialToCamera);
        camNode.rotate((float) Math.PI / 2, (float) Math.PI, 0);
        camNode.move(-6, -50 / 2 + 15 / 2, 8 + 3);
        head.attachChild(camNode);

        Node actuator = createActuatorAssmNode("actuator");
        actuator.move(8, -50 / 2 + 25 / 2, 4 + 3);
        head.attachChild(actuator);
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.