getHandlers

open override fun getHandlers(): HandlerList

Returns the HandlerList for this event type.

This method is required by Bukkit's event system and provides access to the static HandlerList that manages all listeners registered for this event type.

The HandlerList is used internally by Bukkit to:

  • Track which listeners are registered for this event

  • Determine the order in which listeners should be called

  • Manage event priority levels

  • Handle event listener registration and unregistration

Return

The HandlerList instance that manages listeners for PlayerFlagSetEvent

Since

1.0.0

See also

for the static HandlerList instance