Uses of Class
com.flowingcode.vaadin.addons.chatassistant.model.Message
Packages that use Message
-
Uses of Message in com.flowingcode.vaadin.addons.chatassistant
Methods in com.flowingcode.vaadin.addons.chatassistant that return MessageMethods in com.flowingcode.vaadin.addons.chatassistant with parameters of type MessageModifier and TypeMethodDescriptionvoidChatAssistant.sendMessage(Message message) Sends a message programmatically to the component.voidChatMessage.setMessage(Message message) Updates the component by setting the current underlying message.voidChatAssistant.updateMessage(Message message) Updates a previously entered message.Method parameters in com.flowingcode.vaadin.addons.chatassistant with type arguments of type MessageModifier and TypeMethodDescriptionvoidChatAssistant.setDataProvider(DataProvider<Message, ?> dataProvider) Sets the data provider of the internal VirtualList.Constructors in com.flowingcode.vaadin.addons.chatassistant with parameters of type MessageModifierConstructorDescriptionChatMessage(Message message) Creates a new ChatMessage based on the supplied message without markdown support.ChatMessage(Message message, boolean markdownEnabled) Creates a new ChatMessage based on the supplied message.Constructor parameters in com.flowingcode.vaadin.addons.chatassistant with type arguments of type MessageModifierConstructorDescriptionChatAssistant(List<Message> messages, boolean markdownEnabled) Creates a ChatAssistant with the given list of messages.