From 877312184c472d9845e5ef1008bc538f4634059f Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:50:56 +0300 Subject: fix missing source folder --- .../classloading/FMLForgePlugin.html | 438 --------------------- .../minecraftforge/classloading/package-frame.html | 19 - .../classloading/package-summary.html | 131 ------ .../minecraftforge/classloading/package-tree.html | 126 ------ 4 files changed, 714 deletions(-) delete mode 100644 javadoc/net/minecraftforge/classloading/FMLForgePlugin.html delete mode 100644 javadoc/net/minecraftforge/classloading/package-frame.html delete mode 100644 javadoc/net/minecraftforge/classloading/package-summary.html delete mode 100644 javadoc/net/minecraftforge/classloading/package-tree.html (limited to 'javadoc/net/minecraftforge/classloading') diff --git a/javadoc/net/minecraftforge/classloading/FMLForgePlugin.html b/javadoc/net/minecraftforge/classloading/FMLForgePlugin.html deleted file mode 100644 index b4d9889..0000000 --- a/javadoc/net/minecraftforge/classloading/FMLForgePlugin.html +++ /dev/null @@ -1,438 +0,0 @@ - - - - - -FMLForgePlugin (Forge API) - - - - - - - -
- - - - - -
- - - -
-
net.minecraftforge.classloading
-

Class FMLForgePlugin

-
-
- -
- -
-
-
    -
  • - - - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.io.FileforgeLocation 
      static booleanRUNTIME_DEOBF 
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      FMLForgePlugin() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetAccessTransformerClass() -
      Return an optional access transformer class for this coremod.
      -
      java.lang.String[]getASMTransformerClass() -
      Return a list of classes that implements the IClassTransformer interface
      -
      java.lang.StringgetModContainerClass() -
      Return a class name that implements "ModContainer" for injection into the mod list - The "getName" function should return a name that other mods can, if need be, - depend on.
      -
      java.lang.StringgetSetupClass() -
      Return the class name of an implementor of "IFMLCallHook", that will be run, in the - main thread, to perform any additional setup this coremod may require.
      -
      voidinjectData(java.util.Map<java.lang.String,java.lang.Object> data) -
      Inject coremod data into this coremod - This data includes: - "mcLocation" : the location of the minecraft directory, - "coremodList" : the list of coremods - "coremodLocation" : the file this coremod loaded from,
      -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

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

      Field Detail

      - - - -
        -
      • -

        RUNTIME_DEOBF

        -
        public static boolean RUNTIME_DEOBF
        -
      • -
      - - - -
        -
      • -

        forgeLocation

        -
        public static java.io.File forgeLocation
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        FMLForgePlugin

        -
        public FMLForgePlugin()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getASMTransformerClass

        -
        public java.lang.String[] getASMTransformerClass()
        -
        Description copied from interface: IFMLLoadingPlugin
        -
        Return a list of classes that implements the IClassTransformer interface
        -
        -
        Specified by:
        -
        getASMTransformerClass in interface IFMLLoadingPlugin
        -
        Returns:
        a list of classes that implements the IClassTransformer interface
        -
      • -
      - - - -
        -
      • -

        getModContainerClass

        -
        public java.lang.String getModContainerClass()
        -
        Description copied from interface: IFMLLoadingPlugin
        -
        Return a class name that implements "ModContainer" for injection into the mod list - The "getName" function should return a name that other mods can, if need be, - depend on. - Trivially, this modcontainer will be loaded before all regular mod containers, - which means it will be forced to be "immutable" - not susceptible to normal - sorting behaviour. - All other mod behaviours are available however- this container can receive and handle - normal loading events
        -
        -
        Specified by:
        -
        getModContainerClass in interface IFMLLoadingPlugin
        -
        -
      • -
      - - - -
        -
      • -

        getSetupClass

        -
        public java.lang.String getSetupClass()
        -
        Description copied from interface: IFMLLoadingPlugin
        -
        Return the class name of an implementor of "IFMLCallHook", that will be run, in the - main thread, to perform any additional setup this coremod may require. It will be - run prior to Minecraft starting, so it CANNOT operate on minecraft - itself. The game will deliberately crash if this code is detected to trigger a - minecraft class loading (TODO: implement crash ;) )
        -
        -
        Specified by:
        -
        getSetupClass in interface IFMLLoadingPlugin
        -
        -
      • -
      - - - -
        -
      • -

        injectData

        -
        public void injectData(java.util.Map<java.lang.String,java.lang.Object> data)
        -
        Description copied from interface: IFMLLoadingPlugin
        -
        Inject coremod data into this coremod - This data includes: - "mcLocation" : the location of the minecraft directory, - "coremodList" : the list of coremods - "coremodLocation" : the file this coremod loaded from,
        -
        -
        Specified by:
        -
        injectData in interface IFMLLoadingPlugin
        -
        -
      • -
      - - - -
        -
      • -

        getAccessTransformerClass

        -
        public java.lang.String getAccessTransformerClass()
        -
        Description copied from interface: IFMLLoadingPlugin
        -
        Return an optional access transformer class for this coremod. It will be injected post-deobf - so ensure your ATs conform to the new srgnames scheme.
        -
        -
        Specified by:
        -
        getAccessTransformerClass in interface IFMLLoadingPlugin
        -
        Returns:
        the name of an access transformer class or null if none is provided
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/javadoc/net/minecraftforge/classloading/package-frame.html b/javadoc/net/minecraftforge/classloading/package-frame.html deleted file mode 100644 index 613e5c7..0000000 --- a/javadoc/net/minecraftforge/classloading/package-frame.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -net.minecraftforge.classloading (Forge API) - - - - -

net.minecraftforge.classloading

-
-

Classes

- -
- - diff --git a/javadoc/net/minecraftforge/classloading/package-summary.html b/javadoc/net/minecraftforge/classloading/package-summary.html deleted file mode 100644 index 81e5204..0000000 --- a/javadoc/net/minecraftforge/classloading/package-summary.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - -net.minecraftforge.classloading (Forge API) - - - - - - - -
- - - - - -
- - -
-

Package net.minecraftforge.classloading

-
-
- -
- -
- - - - - -
- - - - diff --git a/javadoc/net/minecraftforge/classloading/package-tree.html b/javadoc/net/minecraftforge/classloading/package-tree.html deleted file mode 100644 index 4e7c8dd..0000000 --- a/javadoc/net/minecraftforge/classloading/package-tree.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - -net.minecraftforge.classloading Class Hierarchy (Forge API) - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package net.minecraftforge.classloading

-Package Hierarchies: - -
-
-

Class Hierarchy

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