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

Interface ModContainer

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

      Field Detail

      + + + +
        +
      • +

        EMPTY_PROPERTIES

        +
        static final java.util.Map<java.lang.String,java.lang.String> EMPTY_PROPERTIES
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getModId

        +
        java.lang.String getModId()
        +
        The globally unique modid for this mod
        +
      • +
      + + + +
        +
      • +

        getName

        +
        java.lang.String getName()
        +
        A human readable name
        +
      • +
      + + + +
        +
      • +

        getVersion

        +
        java.lang.String getVersion()
        +
        A human readable version identifier
        +
      • +
      + + + +
        +
      • +

        getSource

        +
        java.io.File getSource()
        +
        The location on the file system which this mod came from
        +
      • +
      + + + +
        +
      • +

        getMetadata

        +
        ModMetadata getMetadata()
        +
        The metadata for this mod
        +
      • +
      + + + +
        +
      • +

        bindMetadata

        +
        void bindMetadata(MetadataCollection mc)
        +
        Attach this mod to it's metadata from the supplied metadata collection
        +
      • +
      + + + +
        +
      • +

        setEnabledState

        +
        void setEnabledState(boolean enabled)
        +
        Set the enabled/disabled state of this mod
        +
      • +
      + + + +
        +
      • +

        getRequirements

        +
        java.util.Set<ArtifactVersion> getRequirements()
        +
        A list of the modids that this mod requires loaded prior to loading
        +
      • +
      + + + +
        +
      • +

        getDependencies

        +
        java.util.List<ArtifactVersion> getDependencies()
        +
        A list of modids that should be loaded prior to this one. The special + value * indicates to load after any other mod.
        +
      • +
      + + + +
        +
      • +

        getDependants

        +
        java.util.List<ArtifactVersion> getDependants()
        +
        A list of modids that should be loaded after this one. The + special value * indicates to load before any + other mod.
        +
      • +
      + + + +
        +
      • +

        getSortingRules

        +
        java.lang.String getSortingRules()
        +
        A representative string encapsulating the sorting preferences for this + mod
        +
      • +
      + + + +
        +
      • +

        registerBus

        +
        boolean registerBus(com.google.common.eventbus.EventBus bus,
        +                  LoadController controller)
        +
        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
        +
        Parameters:
        bus -
        controller -
        +
      • +
      + + + +
        +
      • +

        matches

        +
        boolean matches(java.lang.Object mod)
        +
        Does this mod match the supplied mod
        +
        Parameters:
        mod -
        +
      • +
      + + + +
        +
      • +

        getMod

        +
        java.lang.Object getMod()
        +
        Get the actual mod object
        +
      • +
      + + + + + + + +
        +
      • +

        isImmutable

        +
        boolean isImmutable()
        +
      • +
      + + + +
        +
      • +

        getDisplayVersion

        +
        java.lang.String getDisplayVersion()
        +
      • +
      + + + +
        +
      • +

        acceptableMinecraftVersionRange

        +
        VersionRange acceptableMinecraftVersionRange()
        +
      • +
      + + + +
        +
      • +

        getSigningCertificate

        +
        java.security.cert.Certificate getSigningCertificate()
        +
      • +
      + + + +
        +
      • +

        getCustomModProperties

        +
        java.util.Map<java.lang.String,java.lang.String> getCustomModProperties()
        +
      • +
      + + + +
        +
      • +

        getCustomResourcePackClass

        +
        java.lang.Class<?> getCustomResourcePackClass()
        +
      • +
      + + + +
        +
      • +

        getSharedModDescriptor

        +
        java.util.Map<java.lang.String,java.lang.String> getSharedModDescriptor()
        +
      • +
      + + + + + + + +
        +
      • +

        getGuiClassName

        +
        java.lang.String getGuiClassName()
        +
      • +
      + + + +
        +
      • +

        getOwnedPackages

        +
        java.util.List<java.lang.String> getOwnedPackages()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3