From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- .../mods/fml/common/event/FMLInterModComms.html | 397 +++++++++++++++++++++ 1 file changed, 397 insertions(+) create mode 100644 javadoc/cpw/mods/fml/common/event/FMLInterModComms.html (limited to 'javadoc/cpw/mods/fml/common/event/FMLInterModComms.html') diff --git a/javadoc/cpw/mods/fml/common/event/FMLInterModComms.html b/javadoc/cpw/mods/fml/common/event/FMLInterModComms.html new file mode 100644 index 0000000..ccff6d1 --- /dev/null +++ b/javadoc/cpw/mods/fml/common/event/FMLInterModComms.html @@ -0,0 +1,397 @@ + + + + + +FMLInterModComms (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common.event
+

Class FMLInterModComms

+
+
+ +
+
    +
  • +
    +
    +
    public class FMLInterModComms
    +extends java.lang.Object
    +
    Simple intermod communications to receive simple messages directed at you + from other mods
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class FMLInterModComms.IMCEvent +
      Subscribe to this event to receive your messages (they are sent between + Init and PostInit)
      +
      static class FMLInterModComms.IMCMessage +
      You will receive an instance of this for each message sent
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

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

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static com.google.common.collect.ImmutableList<FMLInterModComms.IMCMessage>fetchRuntimeMessages(java.lang.Object forMod) +
      Retrieve any pending runtime messages for the mod
      +
      static booleansendMessage(java.lang.String modId, + java.lang.String key, + ItemStack value) 
      static booleansendMessage(java.lang.String modId, + java.lang.String key, + NBTTagCompound value) 
      static booleansendMessage(java.lang.String modId, + java.lang.String key, + java.lang.String value) 
      static voidsendRuntimeMessage(java.lang.Object sourceMod, + java.lang.String modId, + java.lang.String key, + ItemStack value) 
      static voidsendRuntimeMessage(java.lang.Object sourceMod, + java.lang.String modId, + java.lang.String key, + NBTTagCompound value) 
      static voidsendRuntimeMessage(java.lang.Object sourceMod, + java.lang.String modId, + java.lang.String key, + java.lang.String value) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        FMLInterModComms

        +
        public FMLInterModComms()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        sendMessage

        +
        public static boolean sendMessage(java.lang.String modId,
        +                  java.lang.String key,
        +                  NBTTagCompound value)
        +
      • +
      + + + +
        +
      • +

        sendMessage

        +
        public static boolean sendMessage(java.lang.String modId,
        +                  java.lang.String key,
        +                  ItemStack value)
        +
      • +
      + + + +
        +
      • +

        sendMessage

        +
        public static boolean sendMessage(java.lang.String modId,
        +                  java.lang.String key,
        +                  java.lang.String value)
        +
      • +
      + + + +
        +
      • +

        sendRuntimeMessage

        +
        public static void sendRuntimeMessage(java.lang.Object sourceMod,
        +                      java.lang.String modId,
        +                      java.lang.String key,
        +                      NBTTagCompound value)
        +
      • +
      + + + +
        +
      • +

        sendRuntimeMessage

        +
        public static void sendRuntimeMessage(java.lang.Object sourceMod,
        +                      java.lang.String modId,
        +                      java.lang.String key,
        +                      ItemStack value)
        +
      • +
      + + + +
        +
      • +

        sendRuntimeMessage

        +
        public static void sendRuntimeMessage(java.lang.Object sourceMod,
        +                      java.lang.String modId,
        +                      java.lang.String key,
        +                      java.lang.String value)
        +
      • +
      + + + +
        +
      • +

        fetchRuntimeMessages

        +
        public static com.google.common.collect.ImmutableList<FMLInterModComms.IMCMessage> fetchRuntimeMessages(java.lang.Object forMod)
        +
        Retrieve any pending runtime messages for the mod
        +
        Parameters:
        forMod - The Mod.Instance of the Mod to fetch messages for
        +
        Returns:
        any messages - the collection will never be null
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3