Uses of Interface
com.incesoft.botplatform.sdk.RobotMessage

Packages that use RobotMessage
com.incesoft.botplatform.sdk   
com.incesoft.botplatform.sdk.support   
 

Uses of RobotMessage in com.incesoft.botplatform.sdk
 

Methods in com.incesoft.botplatform.sdk that return RobotMessage
 RobotMessage RobotSession.createMessage()
          Create a message
 RobotMessage RobotServer.createMessage()
          Create a message
 RobotMessage RobotMessage.setFontColor(int color)
          Set font color of the message
 RobotMessage RobotMessage.setFontName(java.lang.String name)
          Set font name of the message
 RobotMessage RobotMessage.setFontStyle(int style)
          Set font style of the message, as bold, italic,strikeout, underline
 RobotMessage RobotMessage.setInt(int content)
          A util function to set the message text with integer content using setString(String.valueOf(content))
 RobotMessage RobotMessage.setSignature(java.lang.String sig)
          Set robot message preface
 RobotMessage RobotMessage.setString(java.lang.String content)
          Set the plain text of the message
 

Methods in com.incesoft.botplatform.sdk with parameters of type RobotMessage
 void RobotHandler.messageReceived(RobotSession session, RobotMessage message)
          Occurs when robot receives a user's message
 void RobotAdapter.messageReceived(RobotSession session, RobotMessage message)
           
 void RobotServer.pushMessage(java.lang.String robot, java.lang.String user, RobotMessage message)
          Push message to user.
 void RobotSession.send(RobotMessage message)
          Send RobotMessage
 

Uses of RobotMessage in com.incesoft.botplatform.sdk.support
 

Classes in com.incesoft.botplatform.sdk.support that implement RobotMessage
 class DefaultRobotMessage
           
 

Methods in com.incesoft.botplatform.sdk.support that return RobotMessage
 RobotMessage DefaultRobotSession.createMessage()
           
 RobotMessage DefaultRobotServer.createMessage()
           
 RobotMessage DefaultRobotMessage.setFontColor(int color)
           
 RobotMessage DefaultRobotMessage.setFontName(java.lang.String name)
           
 RobotMessage DefaultRobotMessage.setFontStyle(int style)
           
 RobotMessage DefaultRobotMessage.setInt(int content)
           
 RobotMessage DefaultRobotMessage.setSignature(java.lang.String sig)
           
 RobotMessage DefaultRobotMessage.setString(java.lang.String content)
           
 

Methods in com.incesoft.botplatform.sdk.support with parameters of type RobotMessage
 void DefaultRobotServer.pushMessage(java.lang.String robot, java.lang.String user, RobotMessage message)
           
 void DefaultRobotSession.send(RobotMessage message)