Examples of act()


Examples of com.badlogic.gdx.scenes.scene2d.Action.act()

    boolean allDone = true;
    Action action;
    for (int i = 0; i < len; i++) {
      action = actions.get(i);
      if (!action.isDone()) {
        action.act(delta);
        allDone = false;
      } else {
        if (!finished[i]) {
          action.finish();
          finished[i] = true;

Examples of com.badlogic.gdx.scenes.scene2d.Stage.act()

                fps.setText("" + Gdx.graphics.getFramesPerSecond());

                road.update(v);
                road.render(stage.getCamera());

                stage.act();
                stage.draw();
            }

            @Override
            public void resize(int i, int i2) {

Examples of com.poker.game.Player.act()

        //todo need bet value
        Table table = gameManager.getTable(room);
        if (table != null) {
            Player actionPlayer = table.getPlayer(player);
            if (actionPlayer != null) {
                actionPlayer.act(table, Action.BET, -1, -1);
            }
        }
    }

    @WebActionHandler

Examples of dwlab.shapes.Shape.act()

      for ( Iterator<Shape> it = children.iterator(); it.hasNext(); ) {
        Shape obj = it.next();
        if( obj.active ) {
          if( debug ) {
            Project.spriteActed = false;
            obj.act();
            if( obj.toSprite() != null && ! Project.spriteActed ) Project.spritesActed += 1;
          } else {
            obj.act();
          }
        }

Examples of dwlab.shapes.Shape.act()

          if( debug ) {
            Project.spriteActed = false;
            obj.act();
            if( obj.toSprite() != null && ! Project.spriteActed ) Project.spritesActed += 1;
          } else {
            obj.act();
          }
        }
      }
    }
  }

Examples of hudson.FilePath.act()

            }
            if (plain) {
                rsp.setContentType("text/plain;charset=UTF-8");
                OutputStream os = rsp.getOutputStream();
                try {
                    for (String kid : baseFile.act(new SimpleChildList())) {
                        os.write(kid.getBytes("UTF-8"));
                        os.write('\n');
                    }
                    os.flush();
                } finally {

Examples of hudson.FilePath.act()

                req.setAttribute("it", this);
                List<Path> parentPaths = buildParentPath(base,restSize);
                req.setAttribute("parentPath",parentPaths);
                req.setAttribute("backPath", createBackRef(restSize));
                req.setAttribute("topPath", createBackRef(parentPaths.size()+restSize));
                req.setAttribute("files", baseFile.act(glob));
                req.setAttribute("icon", icon);
                req.setAttribute("path", path);
                req.setAttribute("pattern",rest);
                req.setAttribute("dir", baseFile);
                req.getView(this,"dir.jelly").forward(req, rsp);

Examples of hudson.FilePath.act()

        if(rest.equals("*fingerprint*")) {
            rsp.forward(Jenkins.getInstance().getFingerprint(baseFile.digest()),"/",req);
            return;
        }

        ContentInfo ci = baseFile.act(new ContentInfo());

        if(LOGGER.isLoggable(Level.FINE))
            LOGGER.fine("Serving "+baseFile+" with lastModified="+ci.lastModified+", contentLength="+ci.contentLength);

        InputStream in = baseFile.read();

Examples of hudson.FilePath.act()

            listener.error(Messages.Fingerprinter_NoWorkspace());
            build.setResult(Result.FAILURE);
            return;
        }

        List<Record> records = ws.act(new FileCallable<List<Record>>() {
            public List<Record> invoke(File baseDir, VirtualChannel channel) throws IOException {
                List<Record> results = new ArrayList<Record>();

                FileSet src = Util.createFileSet(baseDir,targets);

Examples of hudson.FilePath.act()

    }

    public FilePath performInstallation(ToolInstallation tool, Node node, TaskListener log) throws IOException, InterruptedException {
        FilePath dir = preferredLocation(tool, node);
        if (dir.installIfNecessaryFrom(new URL(url), log, "Unpacking " + url + " to " + dir + " on " + node.getDisplayName())) {
            dir.act(new ChmodRecAPlusX());
        }
        if (subdir == null) {
            return dir;
        } else {
            return dir.child(subdir);
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.