程序包 org.bukkit.event

注释类型 EventHandler


@Target(METHOD) @Retention(RUNTIME) public @interface EventHandler
用来标记要处理的事件的注释。
  • 元素详细资料

    • priority

      EventPriority priority
      定义事件的优先级。

      事件被执行的顺序(先后排列):

      1. LOWEST
      2. LOW
      3. NORMAL
      4. HIGH
      5. HIGHEST
      6. MONITOR

      原文:Define the priority of the event.

      First priority to the last priority executed:

      1. LOWEST
      2. LOW
      3. NORMAL
      4. HIGH
      5. HIGHEST
      6. MONITOR
      返回:
      优先级
      默认值:
      NORMAL
    • ignoreCancelled

      boolean ignoreCancelled
      定义事件是否被忽略.

      如果 ignoreCancelled 为 true 并且事件被取消, 这个方法将 不会被调用. 否则, 这个方法总是会调用。

      原文:Define if the handler ignores a cancelled event.

      If ignoreCancelled is true and the event is cancelled, the method is not called. Otherwise, the method is always called.

      返回:
      事件是否被忽略
      默认值:
      false