Uses of Enum Class
games.stendhal.common.NotificationType
Packages that use NotificationType
Package
Description
entities are all the interactive objects of the gaming world
(including players, NPCs, creatures, items, signs, chests, portals, ...)
the user interface including all dialogs, the main game window and
views for the game entities.
common classes for both server and client.
Entities are all the interactive objects of the gaming world
(including players, NPCs, creatures, items, signs, chests, portals, ...)
Events are notifications send from the server to the clients.
-
Uses of NotificationType in games.stendhal.client.entity
Methods in games.stendhal.client.entity that return NotificationTypeMethods in games.stendhal.client.entity with parameters of type NotificationTypeModifier and TypeMethodDescriptionprotected voidRPEntity.addTextIndicator(String text, NotificationType type) Create/add a text indicator message. -
Uses of NotificationType in games.stendhal.client.gui
Methods in games.stendhal.client.gui with parameters of type NotificationTypeModifier and TypeMethodDescriptionvoidj2DClient.addGameScreenText(double x, double y, String text, NotificationType type, boolean isTalking) Deprecated.voidj2DClient.addGameScreenText(Entity entity, String text, NotificationType type, boolean isTalking) Deprecated.voidJ2DClientGUI.addGameScreenText(double x, double y, String text, NotificationType type, boolean isTalking) Deprecated.voidJ2DClientGUI.addGameScreenText(Entity entity, String text, NotificationType type, boolean isTalking) Deprecated.voidUserInterface.addGameScreenText(double x, double y, String text, NotificationType type, boolean isTalking) Deprecated.voidUserInterface.addGameScreenText(Entity entity, String text, NotificationType type, boolean isTalking) Deprecated.voidScreenController.addText(double x, double y, String text, NotificationType type, boolean isTalking) Adds a text bubble at a given position of the specified type.voidScreenController.addText(Entity entity, String text, NotificationType type, boolean isTalking) Adds a text bubble of the specified type that follows an entity.protected voidKHtmlEdit.insertText(String text, NotificationType type) Insert the text portion of the line using a specified notification type for style. -
Uses of NotificationType in games.stendhal.client.gui.chatlog
Methods in games.stendhal.client.gui.chatlog that return NotificationTypeMethods in games.stendhal.client.gui.chatlog with parameters of type NotificationTypeConstructors in games.stendhal.client.gui.chatlog with parameters of type NotificationTypeModifierConstructorDescriptionEventLine(String header, String text, NotificationType type) HeaderLessEventLine(String text, NotificationType type) -
Uses of NotificationType in games.stendhal.common
Methods in games.stendhal.common that return NotificationTypeModifier and TypeMethodDescriptionstatic NotificationTypeNotificationType.getServerNotificationType(String clientVersion) Get notification type for server messages that the client can show without problems.static NotificationTypeReturns the enum constant of this class with the specified name.static NotificationType[]NotificationType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of NotificationType in games.stendhal.server.core.engine
Methods in games.stendhal.server.core.engine with parameters of type NotificationTypeModifier and TypeMethodDescriptionvoidStendhalRPRuleProcessor.tellAllPlayers(NotificationType notificationType, String message) Tell this message all players. -
Uses of NotificationType in games.stendhal.server.core.events
Fields in games.stendhal.server.core.events declared as NotificationTypeConstructors in games.stendhal.server.core.events with parameters of type NotificationTypeModifierConstructorDescriptionDelayedPlayerTextSender(Player player, String message, NotificationType type, int seconds) Creates a new DelayedPlayerTextSender. -
Uses of NotificationType in games.stendhal.server.entity
Methods in games.stendhal.server.entity with parameters of type NotificationTypeModifier and TypeMethodDescriptionvoidRPEntity.sendPrivateText(NotificationType type, String text) Sends a message that only this player can read.voidRPEntity.sendPrivateText(NotificationType type, String sender, String text) Sends a message that only this entity can read. -
Uses of NotificationType in games.stendhal.server.entity.npc.action
Constructors in games.stendhal.server.entity.npc.action with parameters of type NotificationTypeModifierConstructorDescriptionSendPrivateMessageAction(NotificationType type, String text) Creates a new SendPrivateMessageAction - does NOT work with portals -
Uses of NotificationType in games.stendhal.server.entity.player
Methods in games.stendhal.server.entity.player with parameters of type NotificationTypeModifier and TypeMethodDescriptionvoidPlayer.sendPrivateText(NotificationType type, String text) Sends a message that only this entity can read.voidPlayer.sendPrivateText(NotificationType type, String sender, String text) Sends a message that only this entity can read. -
Uses of NotificationType in games.stendhal.server.events
Constructors in games.stendhal.server.events with parameters of type NotificationTypeModifierConstructorDescriptionPrivateTextEvent(NotificationType type, String text) Creates a new text event.