Uses of Interface
net.runelite.api.MessageNode
-
Packages that use MessageNode Package Description net.runelite.api net.runelite.api.events -
-
Uses of MessageNode in net.runelite.api
Methods in net.runelite.api that return MessageNode Modifier and Type Method Description MessageNode
Client. addChatMessage(ChatMessageType type, String name, String message, String sender)
Adds a new chat message to the chatbox.MessageNode
Client. addChatMessage(ChatMessageType type, String name, String message, String sender, boolean postEvent)
Adds a new chat message to the chatbox.MessageNode[]
ChatLineBuffer. getLines()
Gets an array of message nodes currently in the chatbox.Methods in net.runelite.api that return types with arguments of type MessageNode Modifier and Type Method Description IterableHashTable<MessageNode>
Client. getMessages()
Map of message node id to message nodeMethods in net.runelite.api with parameters of type MessageNode Modifier and Type Method Description void
ChatLineBuffer. removeMessageNode(MessageNode node)
Removes a message node. -
Uses of MessageNode in net.runelite.api.events
Methods in net.runelite.api.events that return MessageNode Modifier and Type Method Description MessageNode
ChatMessage. getMessageNode()
The underlying MessageNode for the message.Methods in net.runelite.api.events with parameters of type MessageNode Modifier and Type Method Description void
ChatMessage. setMessageNode(MessageNode messageNode)
The underlying MessageNode for the message.Constructors in net.runelite.api.events with parameters of type MessageNode Constructor Description ChatMessage(MessageNode messageNode, ChatMessageType type, String name, String message, String sender, int timestamp)
-