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 --- javadoc/cpw/mods/fml/common/FMLModContainer.html | 830 +++++++++++++++++++++++ 1 file changed, 830 insertions(+) create mode 100644 javadoc/cpw/mods/fml/common/FMLModContainer.html (limited to 'javadoc/cpw/mods/fml/common/FMLModContainer.html') diff --git a/javadoc/cpw/mods/fml/common/FMLModContainer.html b/javadoc/cpw/mods/fml/common/FMLModContainer.html new file mode 100644 index 0000000..a16dd8f --- /dev/null +++ b/javadoc/cpw/mods/fml/common/FMLModContainer.html @@ -0,0 +1,830 @@ + + + + + +FMLModContainer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.common
+

Class FMLModContainer

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ModContainer
    +
    +
    +
    +
    public class FMLModContainer
    +extends java.lang.Object
    +implements ModContainer
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FMLModContainer

        +
        public FMLModContainer(java.lang.String className,
        +               ModCandidate container,
        +               java.util.Map<java.lang.String,java.lang.Object> modDescriptor)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getModId

        +
        public java.lang.String getModId()
        +
        Description copied from interface: ModContainer
        +
        The globally unique modid for this mod
        +
        +
        Specified by:
        +
        getModId in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
        Description copied from interface: ModContainer
        +
        A human readable name
        +
        +
        Specified by:
        +
        getName in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getVersion

        +
        public java.lang.String getVersion()
        +
        Description copied from interface: ModContainer
        +
        A human readable version identifier
        +
        +
        Specified by:
        +
        getVersion in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getSource

        +
        public java.io.File getSource()
        +
        Description copied from interface: ModContainer
        +
        The location on the file system which this mod came from
        +
        +
        Specified by:
        +
        getSource in interface ModContainer
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        searchForVersionProperties

        +
        public java.util.Properties searchForVersionProperties()
        +
      • +
      + + + +
        +
      • +

        setEnabledState

        +
        public void setEnabledState(boolean enabled)
        +
        Description copied from interface: ModContainer
        +
        Set the enabled/disabled state of this mod
        +
        +
        Specified by:
        +
        setEnabledState in interface ModContainer
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getDependencies

        +
        public java.util.List<ArtifactVersion> getDependencies()
        +
        Description copied from interface: ModContainer
        +
        A list of modids that should be loaded prior to this one. The special + value * indicates to load after any other mod.
        +
        +
        Specified by:
        +
        getDependencies in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getDependants

        +
        public java.util.List<ArtifactVersion> getDependants()
        +
        Description copied from interface: ModContainer
        +
        A list of modids that should be loaded after this one. The + special value * indicates to load before any + other mod.
        +
        +
        Specified by:
        +
        getDependants in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getSortingRules

        +
        public java.lang.String getSortingRules()
        +
        Description copied from interface: ModContainer
        +
        A representative string encapsulating the sorting preferences for this + mod
        +
        +
        Specified by:
        +
        getSortingRules in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        matches

        +
        public boolean matches(java.lang.Object mod)
        +
        Description copied from interface: ModContainer
        +
        Does this mod match the supplied mod
        +
        +
        Specified by:
        +
        matches in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        getMod

        +
        public java.lang.Object getMod()
        +
        Description copied from interface: ModContainer
        +
        Get the actual mod object
        +
        +
        Specified by:
        +
        getMod in interface ModContainer
        +
        +
      • +
      + + + +
        +
      • +

        registerBus

        +
        public boolean registerBus(com.google.common.eventbus.EventBus bus,
        +                  LoadController controller)
        +
        Description copied from interface: ModContainer
        +
        Register the event bus for the mod and the controller for error handling + Returns if this bus was successfully registered - disabled mods and other + mods that don't need real events should return false and avoid further + processing
        +
        +
        Specified by:
        +
        registerBus in interface ModContainer
        +
        +
      • +
      + + + + + + + +
        +
      • +

        handleModStateEvent

        +
        public void handleModStateEvent(FMLEvent event)
        +
      • +
      + + + + + + + + + + + + + + + + + + + + + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        getCustomModProperties

        +
        public java.util.Map<java.lang.String,java.lang.String> getCustomModProperties()
        +
        +
        Specified by:
        +
        getCustomModProperties in interface ModContainer
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getSharedModDescriptor

        +
        public java.util.Map<java.lang.String,java.lang.String> getSharedModDescriptor()
        +
        +
        Specified by:
        +
        getSharedModDescriptor in interface ModContainer
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        getOwnedPackages

        +
        public java.util.List<java.lang.String> getOwnedPackages()
        +
        +
        Specified by:
        +
        getOwnedPackages in interface ModContainer
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3