Uses of Class
info.ProposalType

Packages that use ProposalType
almabasedmodel   
bot   
info   
 

Uses of ProposalType in almabasedmodel
 

Methods in almabasedmodel with parameters of type ProposalType
 void AEventGenerator.generateProposalByOtherToAgentWithEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType type)
          Someone is making a proposal toward agent we are currently with!
 void AEventGenerator.generateProposalOtherResponseEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType type, boolean bAccepted)
          Someone is responding to proposal to other agent (and none of them is currently with us).
 void AEventGenerator.generateProposalResponseToOtherByAgentWithEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType proposalType, boolean bAccepted)
          The agent we are currently with is responding to proposal made by other agent.
 void AEventGenerator.generateProposalToOtherByAgentWithEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType type)
          The agent we are currently with is making proposal to other agent.
 void AEventGenerator.generateProposalToOtherEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType type)
          Someone is making proposal to other agent (and none of them is currently with us).
 void AEventGenerator.generateReceivedProposalEvent(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.GlobalChat message, ProposalType type, cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agentWith, java.util.Collection<cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player> agentInterrupters)
          Someone has made proposal to us.
 

Uses of ProposalType in bot
 

Methods in bot that return ProposalType
 ProposalType EmotionalBot.parseProposalType(java.lang.String text)
          Parse proposal type from text.
private  ProposalType EmotionalFemaleBot.pickProposal(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent)
          This method checks if it is right time to make some proposal.
private  ProposalType EmotionalMaleBot.pickProposal(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent)
          This method checks if it is right time to make some proposal.
 

Methods in bot with parameters of type ProposalType
protected  void EmotionalBot.actionMakeProposal(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent, ProposalType type)
          We will make input proposal to target agent.
protected  boolean EmotionalBot.checkEmotionsIfWantProposal(int plrId, ProposalType type)
          Here we check emotions and feelings towards agent.
 

Uses of ProposalType in info
 

Fields in info declared as ProposalType
private  ProposalType ProposalInfo.type
          Type of the proposal
 

Methods in info that return ProposalType
 ProposalType ProposalInfo.getType()
          Gets type of this proposal.
static ProposalType ProposalType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProposalType[] ProposalType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in info with parameters of type ProposalType
 void ProposalInfo.setType(ProposalType type)
          Sets type of this proposal.
 

Constructors in info with parameters of type ProposalType
ProposalInfo(ProposalType type, int target, double time)
          Constructor for this class.
ProposalInfo(ProposalType type, int target, double time, double responseTime, boolean accepted, boolean rejected, boolean ignored)
          Complete constructor for this class.