com.vaadin.flow.component.messages.
Class MessageInputI18n
- java.lang.Object
-
- com.vaadin.flow.component.messages.MessageInputI18n
-
All Implemented Interfaces:
public class MessageInputI18n extends Object implements Serializable
The internationalization properties for
MessageInput
. This can be used to customize and translate the language used in the message input component.Author:
Vaadin Ltd.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description MessageInputI18n()
-
Method Summary
All Methods Modifier and Type Method and Description String
getMessage()
Gets the translated word for
message
.String
getSend()
Gets the translated word for
send
.MessageInputI18n
setMessage(String message)
Sets the translated word for
message
.MessageInputI18n
setSend(String send)
Sets the translated word for
send
.
-
-
-
Method Detail
-
getMessage
public String getMessage()
Gets the translated word for
message
.Returns:
the translated word for message
-
setMessage
public MessageInputI18n setMessage(String message)
Sets the translated word for
message
.This word is used as the placeholder and aria-label for the input field where the user can type a new message.
Parameters:
message
- the translated word for messageReturns:
this instance for method chaining
-
getSend
public String getSend()
Gets the translated word for
send
.Returns:
the translated word for send
-
setSend
public MessageInputI18n setSend(String send)
Sets the translated word for
send
.This word is used as the text content of the button for submitting new messages.
Parameters:
send
- the translated word for sendReturns:
this instance for method chaining
-
-