Package ise.mace.actions

Examples of ise.mace.actions.VoteResult


    }
    // Inform each agent of how their vote went, and the overall group movement
    for (String agent : props.keySet())
    {
      Proposition p = props.get(agent);
      ec.act(new VoteResult(p, voteResult.get(p), change), getId(), authCode);
    }
  }
View Full Code Here


    }

    @Override
    public Input handle(Action action, String actorID)
    {
      final VoteResult vote = (VoteResult)action;
      final ise.mace.inputs.VoteResult v = new ise.mace.inputs.VoteResult(vote,
              dmodel.time);

      sim.getPlayer(vote.getProposition().getProposer()).enqueueInput(v);
      return null;
    }
View Full Code Here

TOP

Related Classes of ise.mace.actions.VoteResult

Copyright © 2018 www.massapicom. 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.