Uses of Class
info.ProposalInfo

Packages that use ProposalInfo
bot   
info   
logging   
 

Uses of ProposalInfo in bot
 

Fields in bot declared as ProposalInfo
 ProposalInfo EmotionalBot.recentProposal
          Recent proposal we have sent to someone.
 ProposalInfo EmotionalBot.recentReceivedProposal
          Recent proposal we have received from someone - used for responding to such proposal.
 

Fields in bot with type parameters of type ProposalInfo
 java.util.HashMap<java.lang.Integer,java.util.ArrayList<ProposalInfo>> EmotionalBot.proposalsHistory
          History of our sent proposals
 

Methods in bot with parameters of type ProposalInfo
private  void EmotionalBot.logProposal(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent, ProposalInfo newProp)
          Logs input proposal toward input agent to log file.
 

Uses of ProposalInfo in info
 

Fields in info with type parameters of type ProposalInfo
private  java.util.ArrayList<ProposalInfo> ConversationInfo.receivedProposals
          Here we store all proposal we have received from the agent
private  java.util.ArrayList<ProposalInfo> ConversationInfo.sentProposals
          Here we store all proposals we have sent to this agent
 

Methods in info that return types with arguments of type ProposalInfo
 java.util.ArrayList<ProposalInfo> ConversationInfo.getReceivedProposals()
          Gets received proposals.
 java.util.ArrayList<ProposalInfo> ConversationInfo.getSentProposals()
          Gets sent proposals.
 

Uses of ProposalInfo in logging
 

Fields in logging with type parameters of type ProposalInfo
 java.util.ArrayList<ProposalInfo> AgentLogging.proposalsHistory
          Agents proposal history.
 

Methods in logging with parameters of type ProposalInfo
 void AgentLogging.insertProposal(cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player agent, ProposalInfo newProp)
          Used for inserting proposal into proposalsHistory.