From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../fml/common/eventhandler/ASMEventHandler.html | 313 +++++++++++++++ .../mods/fml/common/eventhandler/Cancelable.html | 150 +++++++ .../fml/common/eventhandler/Event.HasResult.html | 150 +++++++ .../mods/fml/common/eventhandler/Event.Result.html | 333 ++++++++++++++++ .../cpw/mods/fml/common/eventhandler/Event.html | 442 +++++++++++++++++++++ .../cpw/mods/fml/common/eventhandler/EventBus.html | 328 +++++++++++++++ .../fml/common/eventhandler/EventPriority.html | 371 +++++++++++++++++ .../eventhandler/IEventExceptionHandler.html | 221 +++++++++++ .../fml/common/eventhandler/IEventListener.html | 208 ++++++++++ .../mods/fml/common/eventhandler/ListenerList.html | 365 +++++++++++++++++ .../fml/common/eventhandler/SubscribeEvent.html | 219 ++++++++++ .../fml/common/eventhandler/package-frame.html | 38 ++ .../fml/common/eventhandler/package-summary.html | 206 ++++++++++ .../mods/fml/common/eventhandler/package-tree.html | 153 +++++++ 14 files changed, 3497 insertions(+) create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/ASMEventHandler.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/Cancelable.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/Event.HasResult.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/Event.Result.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/Event.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/EventBus.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/EventPriority.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/IEventExceptionHandler.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/IEventListener.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/ListenerList.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/SubscribeEvent.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/package-frame.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/package-summary.html create mode 100644 javadoc/cpw/mods/fml/common/eventhandler/package-tree.html (limited to 'javadoc/cpw/mods/fml/common/eventhandler') diff --git a/javadoc/cpw/mods/fml/common/eventhandler/ASMEventHandler.html b/javadoc/cpw/mods/fml/common/eventhandler/ASMEventHandler.html new file mode 100644 index 0000000..d98e7f0 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/ASMEventHandler.html @@ -0,0 +1,313 @@ + + + + + +ASMEventHandler (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Class ASMEventHandler

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    IEventListener
    +
    +
    +
    +
    public class ASMEventHandler
    +extends java.lang.Object
    +implements IEventListener
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ASMEventHandler(java.lang.Object target, + java.lang.reflect.Method method, + ModContainer owner) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Class<?>createWrapper(java.lang.reflect.Method callback) 
      EventPrioritygetPriority() 
      voidinvoke(Event event) 
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ASMEventHandler

        +
        public ASMEventHandler(java.lang.Object target,
        +               java.lang.reflect.Method method,
        +               ModContainer owner)
        +                throws java.lang.Exception
        +
        Throws:
        +
        java.lang.Exception
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        createWrapper

        +
        public java.lang.Class<?> createWrapper(java.lang.reflect.Method callback)
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/Cancelable.html b/javadoc/cpw/mods/fml/common/eventhandler/Cancelable.html new file mode 100644 index 0000000..83cf4de --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/Cancelable.html @@ -0,0 +1,150 @@ + + + + + +Cancelable (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Annotation Type Cancelable

+
+
+
+
    +
  • +
    +
    +
    @Retention(value=RUNTIME)
    +@Target(value=TYPE)
    +public @interface Cancelable
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/Event.HasResult.html b/javadoc/cpw/mods/fml/common/eventhandler/Event.HasResult.html new file mode 100644 index 0000000..2c27000 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/Event.HasResult.html @@ -0,0 +1,150 @@ + + + + + +Event.HasResult (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Annotation Type Event.HasResult

+
+
+
+
    +
  • +
    +
    +
    @Retention(value=RUNTIME)
    +@Target(value=TYPE)
    +public static @interface Event.HasResult
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/Event.Result.html b/javadoc/cpw/mods/fml/common/eventhandler/Event.Result.html new file mode 100644 index 0000000..8910f52 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/Event.Result.html @@ -0,0 +1,333 @@ + + + + + +Event.Result (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Enum Event.Result

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<Event.Result>
    +
    +
    +
    Enclosing class:
    +
    Event
    +
    +
    +
    +
    public static enum Event.Result
    +extends java.lang.Enum<Event.Result>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      ALLOW 
      DEFAULT 
      DENY 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static Event.ResultvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static Event.Result[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static Event.Result[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (Event.Result c : Event.Result.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static Event.Result valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/Event.html b/javadoc/cpw/mods/fml/common/eventhandler/Event.html new file mode 100644 index 0000000..7f4af89 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/Event.html @@ -0,0 +1,442 @@ + + + + + +Event (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Class Event

+
+
+ + +
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static interface Event.HasResult 
      static class Event.Result 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Event() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      ListenerListgetListenerList() +
      Returns a ListenerList object that contains all listeners + that are registered to this event.
      +
      EventPrioritygetPhase() 
      Event.ResultgetResult() +
      Returns the value set as the result of this event
      +
      booleanhasResult() +
      Determines if this event expects a significant result value.
      +
      booleanisCancelable() +
      Determine if this function is cancelable at all.
      +
      booleanisCanceled() +
      Determine if this event is canceled and should stop executing.
      +
      voidsetCanceled(boolean cancel) +
      Sets the state of this event, not all events are cancelable, and any attempt to + cancel a event that can't be will result in a IllegalArgumentException.
      +
      voidsetPhase(EventPriority value) 
      voidsetResult(Event.Result value) +
      Sets the result value for this event, not all events can have a result set, and any attempt to + set a result for a event that isn't expecting it will result in a IllegalArgumentException.
      +
      protected voidsetup() +
      Called by the base constructor, this is used by ASM generated + event classes to setup various functionality such as the listenerlist.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Event

        +
        public Event()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isCancelable

        +
        public boolean isCancelable()
        +
        Determine if this function is cancelable at all.
        +
        Returns:
        If access to setCanceled should be allowed
        +
      • +
      + + + +
        +
      • +

        isCanceled

        +
        public boolean isCanceled()
        +
        Determine if this event is canceled and should stop executing.
        +
        Returns:
        The current canceled state
        +
      • +
      + + + +
        +
      • +

        setCanceled

        +
        public void setCanceled(boolean cancel)
        +
        Sets the state of this event, not all events are cancelable, and any attempt to + cancel a event that can't be will result in a IllegalArgumentException. + + The functionality of setting the canceled state is defined on a per-event bases.
        +
        Parameters:
        cancel - The new canceled value
        +
      • +
      + + + +
        +
      • +

        hasResult

        +
        public boolean hasResult()
        +
        Determines if this event expects a significant result value.
        +
      • +
      + + + +
        +
      • +

        getResult

        +
        public Event.Result getResult()
        +
        Returns the value set as the result of this event
        +
      • +
      + + + +
        +
      • +

        setResult

        +
        public void setResult(Event.Result value)
        +
        Sets the result value for this event, not all events can have a result set, and any attempt to + set a result for a event that isn't expecting it will result in a IllegalArgumentException. + + The functionality of setting the result is defined on a per-event bases.
        +
        Parameters:
        value - The new result
        +
      • +
      + + + +
        +
      • +

        setup

        +
        protected void setup()
        +
        Called by the base constructor, this is used by ASM generated + event classes to setup various functionality such as the listenerlist.
        +
      • +
      + + + +
        +
      • +

        getListenerList

        +
        public ListenerList getListenerList()
        +
        Returns a ListenerList object that contains all listeners + that are registered to this event.
        +
        Returns:
        Listener List
        +
      • +
      + + + + + + + +
        +
      • +

        setPhase

        +
        public void setPhase(@Nonnull
        +            EventPriority value)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/EventBus.html b/javadoc/cpw/mods/fml/common/eventhandler/EventBus.html new file mode 100644 index 0000000..31fe3ff --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/EventBus.html @@ -0,0 +1,328 @@ + + + + + +EventBus (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Class EventBus

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidhandleException(EventBus bus, + Event event, + IEventListener[] listeners, + int index, + java.lang.Throwable throwable) +
      Fired when a EventListener throws an exception for the specified event on the event bus.
      +
      booleanpost(Event event) 
      voidregister(java.lang.Object target) 
      voidunregister(java.lang.Object object) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        register

        +
        public void register(java.lang.Object target)
        +
      • +
      + + + +
        +
      • +

        unregister

        +
        public void unregister(java.lang.Object object)
        +
      • +
      + + + +
        +
      • +

        post

        +
        public boolean post(Event event)
        +
      • +
      + + + +
        +
      • +

        handleException

        +
        public void handleException(EventBus bus,
        +                   Event event,
        +                   IEventListener[] listeners,
        +                   int index,
        +                   java.lang.Throwable throwable)
        +
        Description copied from interface: IEventExceptionHandler
        +
        Fired when a EventListener throws an exception for the specified event on the event bus. + After this function returns, the original Throwable will be propogated upwards.
        +
        +
        Specified by:
        +
        handleException in interface IEventExceptionHandler
        +
        Parameters:
        bus - The bus the event is being fired on
        event - The event that is being fired
        listeners - All listeners that are listening for this event, in order
        index - Index for the current listener being fired.
        throwable - The throwable being thrown
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/EventPriority.html b/javadoc/cpw/mods/fml/common/eventhandler/EventPriority.html new file mode 100644 index 0000000..b73779c --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/EventPriority.html @@ -0,0 +1,371 @@ + + + + + +EventPriority (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Enum EventPriority

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      HIGH 
      HIGHEST 
      LOW 
      LOWEST 
      NORMAL 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidinvoke(Event event) 
      static EventPriorityvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static EventPriority[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static EventPriority[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (EventPriority c : EventPriority.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static EventPriority valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/IEventExceptionHandler.html b/javadoc/cpw/mods/fml/common/eventhandler/IEventExceptionHandler.html new file mode 100644 index 0000000..1b32c8c --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/IEventExceptionHandler.html @@ -0,0 +1,221 @@ + + + + + +IEventExceptionHandler (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Interface IEventExceptionHandler

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    EventBus
    +
    +
    +
    +
    public interface IEventExceptionHandler
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidhandleException(EventBus bus, + Event event, + IEventListener[] listeners, + int index, + java.lang.Throwable throwable) +
      Fired when a EventListener throws an exception for the specified event on the event bus.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        handleException

        +
        void handleException(EventBus bus,
        +                   Event event,
        +                   IEventListener[] listeners,
        +                   int index,
        +                   java.lang.Throwable throwable)
        +
        Fired when a EventListener throws an exception for the specified event on the event bus. + After this function returns, the original Throwable will be propogated upwards.
        +
        Parameters:
        bus - The bus the event is being fired on
        event - The event that is being fired
        listeners - All listeners that are listening for this event, in order
        index - Index for the current listener being fired.
        throwable - The throwable being thrown
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/IEventListener.html b/javadoc/cpw/mods/fml/common/eventhandler/IEventListener.html new file mode 100644 index 0000000..5b9459c --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/IEventListener.html @@ -0,0 +1,208 @@ + + + + + +IEventListener (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Interface IEventListener

+
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidinvoke(Event event) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        invoke

        +
        void invoke(Event event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/ListenerList.html b/javadoc/cpw/mods/fml/common/eventhandler/ListenerList.html new file mode 100644 index 0000000..114d27a --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/ListenerList.html @@ -0,0 +1,365 @@ + + + + + +ListenerList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Class ListenerList

+
+
+ +
+
    +
  • +
    +
    +
    public class ListenerList
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ListenerList

        +
        public ListenerList()
        +
      • +
      + + + +
        +
      • +

        ListenerList

        +
        public ListenerList(ListenerList parent)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        resize

        +
        public static void resize(int max)
        +
      • +
      + + + +
        +
      • +

        resizeLists

        +
        public void resizeLists(int max)
        +
      • +
      + + + +
        +
      • +

        clearBusID

        +
        public static void clearBusID(int id)
        +
      • +
      + + + +
        +
      • +

        getInstance

        +
        protected cpw.mods.fml.common.eventhandler.ListenerList.ListenerListInst getInstance(int id)
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        unregister

        +
        public void unregister(int id,
        +              IEventListener listener)
        +
      • +
      + + + +
        +
      • +

        unregisterAll

        +
        public static void unregisterAll(int id,
        +                 IEventListener listener)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/SubscribeEvent.html b/javadoc/cpw/mods/fml/common/eventhandler/SubscribeEvent.html new file mode 100644 index 0000000..3b8dde8 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/SubscribeEvent.html @@ -0,0 +1,219 @@ + + + + + +SubscribeEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.eventhandler
+

Annotation Type SubscribeEvent

+
+
+
+
    +
  • +
    +
    +
    @Retention(value=RUNTIME)
    +@Target(value=METHOD)
    +public @interface SubscribeEvent
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        priority

        +
        public abstract EventPriority priority
        +
        +
        Default:
        +
        cpw.mods.fml.common.eventhandler.EventPriority.NORMAL
        +
        +
      • +
      + + + +
        +
      • +

        receiveCanceled

        +
        public abstract boolean receiveCanceled
        +
        +
        Default:
        +
        false
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/package-frame.html b/javadoc/cpw/mods/fml/common/eventhandler/package-frame.html new file mode 100644 index 0000000..ddf205b --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/package-frame.html @@ -0,0 +1,38 @@ + + + + + +cpw.mods.fml.common.eventhandler (Forge API) + + + + +

cpw.mods.fml.common.eventhandler

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +

Annotation Types

+ +
+ + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/package-summary.html b/javadoc/cpw/mods/fml/common/eventhandler/package-summary.html new file mode 100644 index 0000000..b37ab9a --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/package-summary.html @@ -0,0 +1,206 @@ + + + + + +cpw.mods.fml.common.eventhandler (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package cpw.mods.fml.common.eventhandler

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/cpw/mods/fml/common/eventhandler/package-tree.html b/javadoc/cpw/mods/fml/common/eventhandler/package-tree.html new file mode 100644 index 0000000..b6a13f9 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/eventhandler/package-tree.html @@ -0,0 +1,153 @@ + + + + + +cpw.mods.fml.common.eventhandler Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package cpw.mods.fml.common.eventhandler

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3