From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../client/resources/AbstractResourcePack.html | 443 +++++++++++++++++++ .../client/resources/DefaultResourcePack.html | 408 +++++++++++++++++ .../client/resources/FallbackResourceManager.html | 350 +++++++++++++++ .../client/resources/FileResourcePack.html | 398 +++++++++++++++++ .../client/resources/FolderResourcePack.html | 325 ++++++++++++++ .../resources/FoliageColorReloadListener.html | 263 +++++++++++ .../client/resources/GrassColorReloadListener.html | 263 +++++++++++ javadoc/net/minecraft/client/resources/I18n.html | 256 +++++++++++ .../resources/IReloadableResourceManager.html | 233 ++++++++++ .../net/minecraft/client/resources/IResource.html | 234 ++++++++++ .../client/resources/IResourceManager.html | 244 ++++++++++ .../resources/IResourceManagerReloadListener.html | 208 +++++++++ .../minecraft/client/resources/IResourcePack.html | 284 ++++++++++++ .../net/minecraft/client/resources/Language.html | 359 +++++++++++++++ .../client/resources/LanguageManager.html | 379 ++++++++++++++++ javadoc/net/minecraft/client/resources/Locale.html | 284 ++++++++++++ .../minecraft/client/resources/ResourceIndex.html | 256 +++++++++++ .../ResourcePackFileNotFoundException.html | 260 +++++++++++ .../client/resources/ResourcePackListEntry.html | 490 +++++++++++++++++++++ .../resources/ResourcePackListEntryDefault.html | 408 +++++++++++++++++ .../resources/ResourcePackListEntryFound.html | 338 ++++++++++++++ .../resources/ResourcePackRepository.Entry.html | 343 +++++++++++++++ .../client/resources/ResourcePackRepository.html | 434 ++++++++++++++++++ .../resources/SimpleReloadableResourceManager.html | 348 +++++++++++++++ .../minecraft/client/resources/SimpleResource.html | 337 ++++++++++++++ .../SkinManager.SkinAvailableCallback.html | 214 +++++++++ .../minecraft/client/resources/SkinManager.html | 362 +++++++++++++++ .../client/resources/data/AnimationFrame.html | 294 +++++++++++++ .../resources/data/AnimationMetadataSection.html | 356 +++++++++++++++ .../data/AnimationMetadataSectionSerializer.html | 327 ++++++++++++++ .../data/BaseMetadataSectionSerializer.html | 249 +++++++++++ .../client/resources/data/FontMetadataSection.html | 235 ++++++++++ .../data/FontMetadataSectionSerializer.html | 280 ++++++++++++ .../client/resources/data/IMetadataSection.html | 160 +++++++ .../resources/data/IMetadataSectionSerializer.html | 220 +++++++++ .../client/resources/data/IMetadataSerializer.html | 271 ++++++++++++ .../resources/data/LanguageMetadataSection.html | 259 +++++++++++ .../data/LanguageMetadataSectionSerializer.html | 280 ++++++++++++ .../client/resources/data/PackMetadataSection.html | 274 ++++++++++++ .../data/PackMetadataSectionSerializer.html | 327 ++++++++++++++ .../resources/data/TextureMetadataSection.html | 289 ++++++++++++ .../data/TextureMetadataSectionSerializer.html | 280 ++++++++++++ .../client/resources/data/package-frame.html | 36 ++ .../client/resources/data/package-summary.html | 198 +++++++++ .../client/resources/data/package-tree.html | 150 +++++++ .../minecraft/client/resources/package-frame.html | 50 +++ .../client/resources/package-summary.html | 253 +++++++++++ .../minecraft/client/resources/package-tree.html | 180 ++++++++ 48 files changed, 13689 insertions(+) create mode 100644 javadoc/net/minecraft/client/resources/AbstractResourcePack.html create mode 100644 javadoc/net/minecraft/client/resources/DefaultResourcePack.html create mode 100644 javadoc/net/minecraft/client/resources/FallbackResourceManager.html create mode 100644 javadoc/net/minecraft/client/resources/FileResourcePack.html create mode 100644 javadoc/net/minecraft/client/resources/FolderResourcePack.html create mode 100644 javadoc/net/minecraft/client/resources/FoliageColorReloadListener.html create mode 100644 javadoc/net/minecraft/client/resources/GrassColorReloadListener.html create mode 100644 javadoc/net/minecraft/client/resources/I18n.html create mode 100644 javadoc/net/minecraft/client/resources/IReloadableResourceManager.html create mode 100644 javadoc/net/minecraft/client/resources/IResource.html create mode 100644 javadoc/net/minecraft/client/resources/IResourceManager.html create mode 100644 javadoc/net/minecraft/client/resources/IResourceManagerReloadListener.html create mode 100644 javadoc/net/minecraft/client/resources/IResourcePack.html create mode 100644 javadoc/net/minecraft/client/resources/Language.html create mode 100644 javadoc/net/minecraft/client/resources/LanguageManager.html create mode 100644 javadoc/net/minecraft/client/resources/Locale.html create mode 100644 javadoc/net/minecraft/client/resources/ResourceIndex.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackFileNotFoundException.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackListEntry.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackListEntryDefault.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackListEntryFound.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackRepository.Entry.html create mode 100644 javadoc/net/minecraft/client/resources/ResourcePackRepository.html create mode 100644 javadoc/net/minecraft/client/resources/SimpleReloadableResourceManager.html create mode 100644 javadoc/net/minecraft/client/resources/SimpleResource.html create mode 100644 javadoc/net/minecraft/client/resources/SkinManager.SkinAvailableCallback.html create mode 100644 javadoc/net/minecraft/client/resources/SkinManager.html create mode 100644 javadoc/net/minecraft/client/resources/data/AnimationFrame.html create mode 100644 javadoc/net/minecraft/client/resources/data/AnimationMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/AnimationMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/BaseMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/FontMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/FontMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/IMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/IMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/IMetadataSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/LanguageMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/LanguageMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/PackMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/PackMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/TextureMetadataSection.html create mode 100644 javadoc/net/minecraft/client/resources/data/TextureMetadataSectionSerializer.html create mode 100644 javadoc/net/minecraft/client/resources/data/package-frame.html create mode 100644 javadoc/net/minecraft/client/resources/data/package-summary.html create mode 100644 javadoc/net/minecraft/client/resources/data/package-tree.html create mode 100644 javadoc/net/minecraft/client/resources/package-frame.html create mode 100644 javadoc/net/minecraft/client/resources/package-summary.html create mode 100644 javadoc/net/minecraft/client/resources/package-tree.html (limited to 'javadoc/net/minecraft/client/resources') diff --git a/javadoc/net/minecraft/client/resources/AbstractResourcePack.html b/javadoc/net/minecraft/client/resources/AbstractResourcePack.html new file mode 100644 index 0000000..e208103 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/AbstractResourcePack.html @@ -0,0 +1,443 @@ + + + + + +AbstractResourcePack (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class AbstractResourcePack

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

      Field Detail

      + + + +
        +
      • +

        resourcePackFile

        +
        protected final java.io.File resourcePackFile
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AbstractResourcePack

        +
        public AbstractResourcePack(java.io.File p_i1287_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getRelativeName

        +
        protected static java.lang.String getRelativeName(java.io.File p_110595_0_,
        +                               java.io.File p_110595_1_)
        +
      • +
      + + + +
        +
      • +

        getInputStream

        +
        public java.io.InputStream getInputStream(ResourceLocation p_110590_1_)
        +                                   throws java.io.IOException
        +
        +
        Specified by:
        +
        getInputStream in interface IResourcePack
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + + + + + +
        +
      • +

        getInputStreamByName

        +
        protected abstract java.io.InputStream getInputStreamByName(java.lang.String p_110591_1_)
        +                                                     throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        hasResourceName

        +
        protected abstract boolean hasResourceName(java.lang.String p_110593_1_)
        +
      • +
      + + + +
        +
      • +

        logNameNotLowercase

        +
        protected void logNameNotLowercase(java.lang.String p_110594_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        getPackImage

        +
        public java.awt.image.BufferedImage getPackImage()
        +                                          throws java.io.IOException
        +
        +
        Specified by:
        +
        getPackImage in interface IResourcePack
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        getPackName

        +
        public java.lang.String getPackName()
        +
        +
        Specified by:
        +
        getPackName in interface IResourcePack
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/DefaultResourcePack.html b/javadoc/net/minecraft/client/resources/DefaultResourcePack.html new file mode 100644 index 0000000..5280ac8 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/DefaultResourcePack.html @@ -0,0 +1,408 @@ + + + + + +DefaultResourcePack (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class DefaultResourcePack

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    IResourcePack
    +
    +
    +
    +
    public class DefaultResourcePack
    +extends java.lang.Object
    +implements IResourcePack
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        defaultResourceDomains

        +
        public static final java.util.Set defaultResourceDomains
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultResourcePack

        +
        public DefaultResourcePack(java.util.Map p_i1046_1_)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/FallbackResourceManager.html b/javadoc/net/minecraft/client/resources/FallbackResourceManager.html new file mode 100644 index 0000000..b4d85a0 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/FallbackResourceManager.html @@ -0,0 +1,350 @@ + + + + + +FallbackResourceManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class FallbackResourceManager

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/FileResourcePack.html b/javadoc/net/minecraft/client/resources/FileResourcePack.html new file mode 100644 index 0000000..c018c54 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/FileResourcePack.html @@ -0,0 +1,398 @@ + + + + + +FileResourcePack (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class FileResourcePack

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

      Field Detail

      + + + +
        +
      • +

        entryNameSplitter

        +
        public static final com.google.common.base.Splitter entryNameSplitter
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FileResourcePack

        +
        public FileResourcePack(java.io.File p_i1290_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getInputStreamByName

        +
        protected java.io.InputStream getInputStreamByName(java.lang.String p_110591_1_)
        +                                            throws java.io.IOException
        +
        +
        Specified by:
        +
        getInputStreamByName in class AbstractResourcePack
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        finalize

        +
        protected void finalize()
        +                 throws java.lang.Throwable
        +
        +
        Overrides:
        +
        finalize in class java.lang.Object
        +
        Throws:
        +
        java.lang.Throwable
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close()
        +           throws java.io.IOException
        +
        +
        Specified by:
        +
        close in interface java.io.Closeable
        +
        Specified by:
        +
        close in interface java.lang.AutoCloseable
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/FolderResourcePack.html b/javadoc/net/minecraft/client/resources/FolderResourcePack.html new file mode 100644 index 0000000..dc85577 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/FolderResourcePack.html @@ -0,0 +1,325 @@ + + + + + +FolderResourcePack (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class FolderResourcePack

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

      Constructor Detail

      + + + +
        +
      • +

        FolderResourcePack

        +
        public FolderResourcePack(java.io.File p_i1291_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getInputStreamByName

        +
        protected java.io.InputStream getInputStreamByName(java.lang.String p_110591_1_)
        +                                            throws java.io.IOException
        +
        +
        Specified by:
        +
        getInputStreamByName in class AbstractResourcePack
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + + + + + +
        +
      • +

        getResourceDomains

        +
        public java.util.Set getResourceDomains()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/FoliageColorReloadListener.html b/javadoc/net/minecraft/client/resources/FoliageColorReloadListener.html new file mode 100644 index 0000000..bb1c4d4 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/FoliageColorReloadListener.html @@ -0,0 +1,263 @@ + + + + + +FoliageColorReloadListener (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class FoliageColorReloadListener

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

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidonResourceManagerReload(IResourceManager p_110549_1_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/GrassColorReloadListener.html b/javadoc/net/minecraft/client/resources/GrassColorReloadListener.html new file mode 100644 index 0000000..a686ee5 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/GrassColorReloadListener.html @@ -0,0 +1,263 @@ + + + + + +GrassColorReloadListener (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class GrassColorReloadListener

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

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidonResourceManagerReload(IResourceManager p_110549_1_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/I18n.html b/javadoc/net/minecraft/client/resources/I18n.html new file mode 100644 index 0000000..f7641d2 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/I18n.html @@ -0,0 +1,256 @@ + + + + + +I18n (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class I18n

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

      Constructor Summary

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

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringformat(java.lang.String p_135052_0_, + java.lang.Object... p_135052_1_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        I18n

        +
        public I18n()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        format

        +
        public static java.lang.String format(java.lang.String p_135052_0_,
        +                      java.lang.Object... p_135052_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/IReloadableResourceManager.html b/javadoc/net/minecraft/client/resources/IReloadableResourceManager.html new file mode 100644 index 0000000..020b63f --- /dev/null +++ b/javadoc/net/minecraft/client/resources/IReloadableResourceManager.html @@ -0,0 +1,233 @@ + + + + + +IReloadableResourceManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface IReloadableResourceManager

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

      Method Detail

      + + + +
        +
      • +

        reloadResources

        +
        void reloadResources(java.util.List p_110541_1_)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/IResource.html b/javadoc/net/minecraft/client/resources/IResource.html new file mode 100644 index 0000000..07aeb62 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/IResource.html @@ -0,0 +1,234 @@ + + + + + +IResource (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface IResource

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    SimpleResource
    +
    +
    +
    +
    public interface IResource
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getInputStream

        +
        java.io.InputStream getInputStream()
        +
      • +
      + + + +
        +
      • +

        hasMetadata

        +
        boolean hasMetadata()
        +
      • +
      + + + +
        +
      • +

        getMetadata

        +
        IMetadataSection getMetadata(java.lang.String p_110526_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/IResourceManager.html b/javadoc/net/minecraft/client/resources/IResourceManager.html new file mode 100644 index 0000000..d28aad7 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/IResourceManager.html @@ -0,0 +1,244 @@ + + + + + +IResourceManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface IResourceManager

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

      Method Detail

      + + + +
        +
      • +

        getResourceDomains

        +
        java.util.Set getResourceDomains()
        +
      • +
      + + + +
        +
      • +

        getResource

        +
        IResource getResource(ResourceLocation p_110536_1_)
        +                      throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        getAllResources

        +
        java.util.List getAllResources(ResourceLocation p_135056_1_)
        +                               throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/IResourceManagerReloadListener.html b/javadoc/net/minecraft/client/resources/IResourceManagerReloadListener.html new file mode 100644 index 0000000..88703e1 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/IResourceManagerReloadListener.html @@ -0,0 +1,208 @@ + + + + + +IResourceManagerReloadListener (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface IResourceManagerReloadListener

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

      Method Detail

      + + + +
        +
      • +

        onResourceManagerReload

        +
        void onResourceManagerReload(IResourceManager p_110549_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/IResourcePack.html b/javadoc/net/minecraft/client/resources/IResourcePack.html new file mode 100644 index 0000000..7c2b38f --- /dev/null +++ b/javadoc/net/minecraft/client/resources/IResourcePack.html @@ -0,0 +1,284 @@ + + + + + +IResourcePack (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface IResourcePack

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

      Method Detail

      + + + +
        +
      • +

        getInputStream

        +
        java.io.InputStream getInputStream(ResourceLocation p_110590_1_)
        +                                   throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + + + + + +
        +
      • +

        getResourceDomains

        +
        java.util.Set getResourceDomains()
        +
      • +
      + + + +
        +
      • +

        getPackMetadata

        +
        IMetadataSection getPackMetadata(IMetadataSerializer p_135058_1_,
        +                               java.lang.String p_135058_2_)
        +                                 throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        getPackImage

        +
        java.awt.image.BufferedImage getPackImage()
        +                                          throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        getPackName

        +
        java.lang.String getPackName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/Language.html b/javadoc/net/minecraft/client/resources/Language.html new file mode 100644 index 0000000..bd90ab0 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/Language.html @@ -0,0 +1,359 @@ + + + + + +Language (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class Language

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Comparable
    +
    +
    +
    +
    public class Language
    +extends java.lang.Object
    +implements java.lang.Comparable
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Language(java.lang.String p_i1303_1_, + java.lang.String p_i1303_2_, + java.lang.String p_i1303_3_, + boolean p_i1303_4_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intcompareTo(Language p_compareTo_1_) 
      intcompareTo(java.lang.Object p_compareTo_1_) 
      booleanequals(java.lang.Object p_equals_1_) 
      java.lang.StringgetLanguageCode() 
      inthashCode() 
      booleanisBidirectional() 
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        Language

        +
        public Language(java.lang.String p_i1303_1_,
        +        java.lang.String p_i1303_2_,
        +        java.lang.String p_i1303_3_,
        +        boolean p_i1303_4_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getLanguageCode

        +
        public java.lang.String getLanguageCode()
        +
      • +
      + + + +
        +
      • +

        isBidirectional

        +
        public boolean isBidirectional()
        +
      • +
      + + + +
        +
      • +

        toString

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

        equals

        +
        public boolean equals(java.lang.Object p_equals_1_)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        compareTo

        +
        public int compareTo(Language p_compareTo_1_)
        +
      • +
      + + + +
        +
      • +

        compareTo

        +
        public int compareTo(java.lang.Object p_compareTo_1_)
        +
        +
        Specified by:
        +
        compareTo in interface java.lang.Comparable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/LanguageManager.html b/javadoc/net/minecraft/client/resources/LanguageManager.html new file mode 100644 index 0000000..e919de8 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/LanguageManager.html @@ -0,0 +1,379 @@ + + + + + +LanguageManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class LanguageManager

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

      Field Detail

      + + + +
        +
      • +

        currentLocale

        +
        protected static final Locale currentLocale
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LanguageManager

        +
        public LanguageManager(IMetadataSerializer p_i1304_1_,
        +               java.lang.String p_i1304_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        parseLanguageMetadata

        +
        public void parseLanguageMetadata(java.util.List p_135043_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        isCurrentLocaleUnicode

        +
        public boolean isCurrentLocaleUnicode()
        +
      • +
      + + + +
        +
      • +

        isCurrentLanguageBidirectional

        +
        public boolean isCurrentLanguageBidirectional()
        +
      • +
      + + + +
        +
      • +

        setCurrentLanguage

        +
        public void setCurrentLanguage(Language p_135045_1_)
        +
      • +
      + + + +
        +
      • +

        getCurrentLanguage

        +
        public Language getCurrentLanguage()
        +
      • +
      + + + +
        +
      • +

        getLanguages

        +
        public java.util.SortedSet getLanguages()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/Locale.html b/javadoc/net/minecraft/client/resources/Locale.html new file mode 100644 index 0000000..951f1d6 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/Locale.html @@ -0,0 +1,284 @@ + + + + + +Locale (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class Locale

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

      Constructor Summary

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

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringformatMessage(java.lang.String p_135023_1_, + java.lang.Object[] p_135023_2_) 
      booleanisUnicode() 
      voidloadLocaleDataFiles(IResourceManager p_135022_1_, + java.util.List p_135022_2_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        Locale

        +
        public Locale()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        loadLocaleDataFiles

        +
        public void loadLocaleDataFiles(IResourceManager p_135022_1_,
        +                       java.util.List p_135022_2_)
        +
      • +
      + + + +
        +
      • +

        isUnicode

        +
        public boolean isUnicode()
        +
      • +
      + + + +
        +
      • +

        formatMessage

        +
        public java.lang.String formatMessage(java.lang.String p_135023_1_,
        +                             java.lang.Object[] p_135023_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourceIndex.html b/javadoc/net/minecraft/client/resources/ResourceIndex.html new file mode 100644 index 0000000..06a9aa9 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourceIndex.html @@ -0,0 +1,256 @@ + + + + + +ResourceIndex (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourceIndex

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ResourceIndex(java.io.File p_i1047_1_, + java.lang.String p_i1047_2_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.Mapfunc_152782_a() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        ResourceIndex

        +
        public ResourceIndex(java.io.File p_i1047_1_,
        +             java.lang.String p_i1047_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152782_a

        +
        public java.util.Map func_152782_a()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackFileNotFoundException.html b/javadoc/net/minecraft/client/resources/ResourcePackFileNotFoundException.html new file mode 100644 index 0000000..aabe1ff --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackFileNotFoundException.html @@ -0,0 +1,260 @@ + + + + + +ResourcePackFileNotFoundException (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackFileNotFoundException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class ResourcePackFileNotFoundException
    +extends java.io.FileNotFoundException
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      +
        +
      • + + +

        Methods inherited from class java.lang.Throwable

        +addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        ResourcePackFileNotFoundException

        +
        public ResourcePackFileNotFoundException(java.io.File p_i1294_1_,
        +                                 java.lang.String p_i1294_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackListEntry.html b/javadoc/net/minecraft/client/resources/ResourcePackListEntry.html new file mode 100644 index 0000000..a993390 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackListEntry.html @@ -0,0 +1,490 @@ + + + + + +ResourcePackListEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackListEntry

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

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voiddrawEntry(int p_148279_1_, + int p_148279_2_, + int p_148279_3_, + int p_148279_4_, + int p_148279_5_, + Tessellator p_148279_6_, + int p_148279_7_, + int p_148279_8_, + boolean p_148279_9_) 
      protected booleanfunc_148307_h() 
      protected booleanfunc_148308_f() 
      protected booleanfunc_148309_e() 
      protected booleanfunc_148310_d() 
      protected abstract java.lang.Stringfunc_148311_a() 
      protected abstract java.lang.Stringfunc_148312_b() 
      protected abstract voidfunc_148313_c() 
      protected booleanfunc_148314_g() 
      booleanmousePressed(int p_148278_1_, + int p_148278_2_, + int p_148278_3_, + int p_148278_4_, + int p_148278_5_, + int p_148278_6_) 
      voidmouseReleased(int p_148277_1_, + int p_148277_2_, + int p_148277_3_, + int p_148277_4_, + int p_148277_5_, + int p_148277_6_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Method Detail

      + + + +
        +
      • +

        drawEntry

        +
        public void drawEntry(int p_148279_1_,
        +             int p_148279_2_,
        +             int p_148279_3_,
        +             int p_148279_4_,
        +             int p_148279_5_,
        +             Tessellator p_148279_6_,
        +             int p_148279_7_,
        +             int p_148279_8_,
        +             boolean p_148279_9_)
        +
        +
        Specified by:
        +
        drawEntry in interface GuiListExtended.IGuiListEntry
        +
        +
      • +
      + + + +
        +
      • +

        func_148311_a

        +
        protected abstract java.lang.String func_148311_a()
        +
      • +
      + + + +
        +
      • +

        func_148312_b

        +
        protected abstract java.lang.String func_148312_b()
        +
      • +
      + + + +
        +
      • +

        func_148313_c

        +
        protected abstract void func_148313_c()
        +
      • +
      + + + +
        +
      • +

        func_148310_d

        +
        protected boolean func_148310_d()
        +
      • +
      + + + +
        +
      • +

        func_148309_e

        +
        protected boolean func_148309_e()
        +
      • +
      + + + +
        +
      • +

        func_148308_f

        +
        protected boolean func_148308_f()
        +
      • +
      + + + +
        +
      • +

        func_148314_g

        +
        protected boolean func_148314_g()
        +
      • +
      + + + +
        +
      • +

        func_148307_h

        +
        protected boolean func_148307_h()
        +
      • +
      + + + +
        +
      • +

        mousePressed

        +
        public boolean mousePressed(int p_148278_1_,
        +                   int p_148278_2_,
        +                   int p_148278_3_,
        +                   int p_148278_4_,
        +                   int p_148278_5_,
        +                   int p_148278_6_)
        +
        +
        Specified by:
        +
        mousePressed in interface GuiListExtended.IGuiListEntry
        +
        +
      • +
      + + + +
        +
      • +

        mouseReleased

        +
        public void mouseReleased(int p_148277_1_,
        +                 int p_148277_2_,
        +                 int p_148277_3_,
        +                 int p_148277_4_,
        +                 int p_148277_5_,
        +                 int p_148277_6_)
        +
        +
        Specified by:
        +
        mouseReleased in interface GuiListExtended.IGuiListEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackListEntryDefault.html b/javadoc/net/minecraft/client/resources/ResourcePackListEntryDefault.html new file mode 100644 index 0000000..1f763c5 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackListEntryDefault.html @@ -0,0 +1,408 @@ + + + + + +ResourcePackListEntryDefault (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackListEntryDefault

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackListEntryFound.html b/javadoc/net/minecraft/client/resources/ResourcePackListEntryFound.html new file mode 100644 index 0000000..7e0de2c --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackListEntryFound.html @@ -0,0 +1,338 @@ + + + + + +ResourcePackListEntryFound (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackListEntryFound

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackRepository.Entry.html b/javadoc/net/minecraft/client/resources/ResourcePackRepository.Entry.html new file mode 100644 index 0000000..ec29fb1 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackRepository.Entry.html @@ -0,0 +1,343 @@ + + + + + +ResourcePackRepository.Entry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackRepository.Entry

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ResourcePackRepository
    +
    +
    +
    +
    public class ResourcePackRepository.Entry
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        updateResourcePack

        +
        public void updateResourcePack()
        +                        throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        bindTexturePackIcon

        +
        public void bindTexturePackIcon(TextureManager p_110518_1_)
        +
      • +
      + + + +
        +
      • +

        closeResourcePack

        +
        public void closeResourcePack()
        +
      • +
      + + + +
        +
      • +

        getResourcePack

        +
        public IResourcePack getResourcePack()
        +
      • +
      + + + +
        +
      • +

        getResourcePackName

        +
        public java.lang.String getResourcePackName()
        +
      • +
      + + + +
        +
      • +

        getTexturePackDescription

        +
        public java.lang.String getTexturePackDescription()
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object p_equals_1_)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/ResourcePackRepository.html b/javadoc/net/minecraft/client/resources/ResourcePackRepository.html new file mode 100644 index 0000000..d178bdf --- /dev/null +++ b/javadoc/net/minecraft/client/resources/ResourcePackRepository.html @@ -0,0 +1,434 @@ + + + + + +ResourcePackRepository (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class ResourcePackRepository

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

      Field Detail

      + + + +
        +
      • +

        resourcePackFilter

        +
        protected static final java.io.FileFilter resourcePackFilter
        +
      • +
      + + + +
        +
      • +

        rprDefaultResourcePack

        +
        public final IResourcePack rprDefaultResourcePack
        +
      • +
      + + + + +
    • +
    + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        updateRepositoryEntriesAll

        +
        public void updateRepositoryEntriesAll()
        +
      • +
      + + + +
        +
      • +

        getRepositoryEntriesAll

        +
        public java.util.List getRepositoryEntriesAll()
        +
      • +
      + + + +
        +
      • +

        getRepositoryEntries

        +
        public java.util.List getRepositoryEntries()
        +
      • +
      + + + +
        +
      • +

        func_148527_a

        +
        public void func_148527_a(java.util.List p_148527_1_)
        +
      • +
      + + + +
        +
      • +

        getDirResourcepacks

        +
        public java.io.File getDirResourcepacks()
        +
      • +
      + + + +
        +
      • +

        func_148526_a

        +
        public void func_148526_a(java.lang.String p_148526_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        func_148529_f

        +
        public void func_148529_f()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/SimpleReloadableResourceManager.html b/javadoc/net/minecraft/client/resources/SimpleReloadableResourceManager.html new file mode 100644 index 0000000..3d2ff62 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/SimpleReloadableResourceManager.html @@ -0,0 +1,348 @@ + + + + + +SimpleReloadableResourceManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class SimpleReloadableResourceManager

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/SimpleResource.html b/javadoc/net/minecraft/client/resources/SimpleResource.html new file mode 100644 index 0000000..7d21e3e --- /dev/null +++ b/javadoc/net/minecraft/client/resources/SimpleResource.html @@ -0,0 +1,337 @@ + + + + + +SimpleResource (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class SimpleResource

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    IResource
    +
    +
    +
    +
    public class SimpleResource
    +extends java.lang.Object
    +implements IResource
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object p_equals_1_) 
      java.io.InputStreamgetInputStream() 
      IMetadataSectiongetMetadata(java.lang.String p_110526_1_) 
      inthashCode() 
      booleanhasMetadata() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        SimpleResource

        +
        public SimpleResource(ResourceLocation p_i1300_1_,
        +              java.io.InputStream p_i1300_2_,
        +              java.io.InputStream p_i1300_3_,
        +              IMetadataSerializer p_i1300_4_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getInputStream

        +
        public java.io.InputStream getInputStream()
        +
        +
        Specified by:
        +
        getInputStream in interface IResource
        +
        +
      • +
      + + + +
        +
      • +

        hasMetadata

        +
        public boolean hasMetadata()
        +
        +
        Specified by:
        +
        hasMetadata in interface IResource
        +
        +
      • +
      + + + + + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object p_equals_1_)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/SkinManager.SkinAvailableCallback.html b/javadoc/net/minecraft/client/resources/SkinManager.SkinAvailableCallback.html new file mode 100644 index 0000000..0c7b0ea --- /dev/null +++ b/javadoc/net/minecraft/client/resources/SkinManager.SkinAvailableCallback.html @@ -0,0 +1,214 @@ + + + + + +SkinManager.SkinAvailableCallback (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Interface SkinManager.SkinAvailableCallback

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

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidfunc_152121_a(com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152121_1_, + ResourceLocation p_152121_2_) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152121_a

        +
        void func_152121_a(com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152121_1_,
        +                 ResourceLocation p_152121_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/SkinManager.html b/javadoc/net/minecraft/client/resources/SkinManager.html new file mode 100644 index 0000000..6c48034 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/SkinManager.html @@ -0,0 +1,362 @@ + + + + + +SkinManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources
+

Class SkinManager

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SkinManager(TextureManager p_i1044_1_, + java.io.File p_i1044_2_, + com.mojang.authlib.minecraft.MinecraftSessionService p_i1044_3_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.Mapfunc_152788_a(com.mojang.authlib.GameProfile p_152788_1_) 
      ResourceLocationfunc_152789_a(com.mojang.authlib.minecraft.MinecraftProfileTexture p_152789_1_, + com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152789_2_, + SkinManager.SkinAvailableCallback p_152789_3_) 
      voidfunc_152790_a(com.mojang.authlib.GameProfile p_152790_1_, + SkinManager.SkinAvailableCallback p_152790_2_, + boolean p_152790_3_) 
      ResourceLocationfunc_152792_a(com.mojang.authlib.minecraft.MinecraftProfileTexture p_152792_1_, + com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152792_2_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        SkinManager

        +
        public SkinManager(TextureManager p_i1044_1_,
        +           java.io.File p_i1044_2_,
        +           com.mojang.authlib.minecraft.MinecraftSessionService p_i1044_3_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152792_a

        +
        public ResourceLocation func_152792_a(com.mojang.authlib.minecraft.MinecraftProfileTexture p_152792_1_,
        +                             com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152792_2_)
        +
      • +
      + + + +
        +
      • +

        func_152789_a

        +
        public ResourceLocation func_152789_a(com.mojang.authlib.minecraft.MinecraftProfileTexture p_152789_1_,
        +                             com.mojang.authlib.minecraft.MinecraftProfileTexture.Type p_152789_2_,
        +                             SkinManager.SkinAvailableCallback p_152789_3_)
        +
      • +
      + + + +
        +
      • +

        func_152790_a

        +
        public void func_152790_a(com.mojang.authlib.GameProfile p_152790_1_,
        +                 SkinManager.SkinAvailableCallback p_152790_2_,
        +                 boolean p_152790_3_)
        +
      • +
      + + + +
        +
      • +

        func_152788_a

        +
        public java.util.Map func_152788_a(com.mojang.authlib.GameProfile p_152788_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/AnimationFrame.html b/javadoc/net/minecraft/client/resources/data/AnimationFrame.html new file mode 100644 index 0000000..d78feb4 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/AnimationFrame.html @@ -0,0 +1,294 @@ + + + + + +AnimationFrame (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class AnimationFrame

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

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      AnimationFrame(int p_i1307_1_) 
      AnimationFrame(int p_i1308_1_, + int p_i1308_2_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intgetFrameIndex() 
      intgetFrameTime() 
      booleanhasNoTime() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        AnimationFrame

        +
        public AnimationFrame(int p_i1307_1_)
        +
      • +
      + + + +
        +
      • +

        AnimationFrame

        +
        public AnimationFrame(int p_i1308_1_,
        +              int p_i1308_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        hasNoTime

        +
        public boolean hasNoTime()
        +
      • +
      + + + +
        +
      • +

        getFrameTime

        +
        public int getFrameTime()
        +
      • +
      + + + +
        +
      • +

        getFrameIndex

        +
        public int getFrameIndex()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/AnimationMetadataSection.html b/javadoc/net/minecraft/client/resources/data/AnimationMetadataSection.html new file mode 100644 index 0000000..ef832b3 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/AnimationMetadataSection.html @@ -0,0 +1,356 @@ + + + + + +AnimationMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class AnimationMetadataSection

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      AnimationMetadataSection(java.util.List p_i1309_1_, + int p_i1309_2_, + int p_i1309_3_, + int p_i1309_4_) 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AnimationMetadataSection

        +
        public AnimationMetadataSection(java.util.List p_i1309_1_,
        +                        int p_i1309_2_,
        +                        int p_i1309_3_,
        +                        int p_i1309_4_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getFrameHeight

        +
        public int getFrameHeight()
        +
      • +
      + + + +
        +
      • +

        getFrameWidth

        +
        public int getFrameWidth()
        +
      • +
      + + + +
        +
      • +

        getFrameCount

        +
        public int getFrameCount()
        +
      • +
      + + + +
        +
      • +

        getFrameTime

        +
        public int getFrameTime()
        +
      • +
      + + + +
        +
      • +

        getFrameTimeSingle

        +
        public int getFrameTimeSingle(int p_110472_1_)
        +
      • +
      + + + +
        +
      • +

        frameHasTime

        +
        public boolean frameHasTime(int p_110470_1_)
        +
      • +
      + + + +
        +
      • +

        getFrameIndex

        +
        public int getFrameIndex(int p_110468_1_)
        +
      • +
      + + + +
        +
      • +

        getFrameIndexSet

        +
        public java.util.Set getFrameIndexSet()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/AnimationMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/AnimationMetadataSectionSerializer.html new file mode 100644 index 0000000..257aedc --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/AnimationMetadataSectionSerializer.html @@ -0,0 +1,327 @@ + + + + + +AnimationMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class AnimationMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      AnimationMetadataSectiondeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      java.lang.StringgetSectionName() 
      com.google.gson.JsonElementserialize(AnimationMetadataSection p_serialize_1_, + java.lang.reflect.Type p_serialize_2_, + com.google.gson.JsonSerializationContext p_serialize_3_) 
      com.google.gson.JsonElementserialize(java.lang.Object p_serialize_1_, + java.lang.reflect.Type p_serialize_2_, + com.google.gson.JsonSerializationContext p_serialize_3_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        AnimationMetadataSectionSerializer

        +
        public AnimationMetadataSectionSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public AnimationMetadataSection deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                                   java.lang.reflect.Type p_deserialize_2_,
        +                                   com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
        +
        Specified by:
        +
        deserialize in interface com.google.gson.JsonDeserializer
        +
        +
      • +
      + + + +
        +
      • +

        serialize

        +
        public com.google.gson.JsonElement serialize(AnimationMetadataSection p_serialize_1_,
        +                                    java.lang.reflect.Type p_serialize_2_,
        +                                    com.google.gson.JsonSerializationContext p_serialize_3_)
        +
      • +
      + + + + + + + +
        +
      • +

        serialize

        +
        public com.google.gson.JsonElement serialize(java.lang.Object p_serialize_1_,
        +                                    java.lang.reflect.Type p_serialize_2_,
        +                                    com.google.gson.JsonSerializationContext p_serialize_3_)
        +
        +
        Specified by:
        +
        serialize in interface com.google.gson.JsonSerializer
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/BaseMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/BaseMetadataSectionSerializer.html new file mode 100644 index 0000000..37bdcdd --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/BaseMetadataSectionSerializer.html @@ -0,0 +1,249 @@ + + + + + +BaseMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class BaseMetadataSectionSerializer

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

      Method Summary

      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

        Methods inherited from interface com.google.gson.JsonDeserializer

        +deserialize
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BaseMetadataSectionSerializer

        +
        public BaseMetadataSectionSerializer()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/FontMetadataSection.html b/javadoc/net/minecraft/client/resources/data/FontMetadataSection.html new file mode 100644 index 0000000..66f974f --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/FontMetadataSection.html @@ -0,0 +1,235 @@ + + + + + +FontMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class FontMetadataSection

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      FontMetadataSection(float[] p_i1310_1_, + float[] p_i1310_2_, + float[] p_i1310_3_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        FontMetadataSection

        +
        public FontMetadataSection(float[] p_i1310_1_,
        +                   float[] p_i1310_2_,
        +                   float[] p_i1310_3_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/FontMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/FontMetadataSectionSerializer.html new file mode 100644 index 0000000..944b3cf --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/FontMetadataSectionSerializer.html @@ -0,0 +1,280 @@ + + + + + +FontMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class FontMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      FontMetadataSectiondeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      java.lang.StringgetSectionName() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        FontMetadataSectionSerializer

        +
        public FontMetadataSectionSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public FontMetadataSection deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                              java.lang.reflect.Type p_deserialize_2_,
        +                              com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
      • +
      + + + +
        +
      • +

        getSectionName

        +
        public java.lang.String getSectionName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/IMetadataSection.html b/javadoc/net/minecraft/client/resources/data/IMetadataSection.html new file mode 100644 index 0000000..8b6df47 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/IMetadataSection.html @@ -0,0 +1,160 @@ + + + + + +IMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Interface IMetadataSection

+
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/IMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/IMetadataSectionSerializer.html new file mode 100644 index 0000000..981c730 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/IMetadataSectionSerializer.html @@ -0,0 +1,220 @@ + + + + + +IMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Interface IMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetSectionName() 
      +
        +
      • + + +

        Methods inherited from interface com.google.gson.JsonDeserializer

        +deserialize
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSectionName

        +
        java.lang.String getSectionName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/IMetadataSerializer.html b/javadoc/net/minecraft/client/resources/data/IMetadataSerializer.html new file mode 100644 index 0000000..f8e1e77 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/IMetadataSerializer.html @@ -0,0 +1,271 @@ + + + + + +IMetadataSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class IMetadataSerializer

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

      Constructor Detail

      + + + +
        +
      • +

        IMetadataSerializer

        +
        public IMetadataSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        registerMetadataSectionType

        +
        public void registerMetadataSectionType(IMetadataSectionSerializer p_110504_1_,
        +                               java.lang.Class p_110504_2_)
        +
      • +
      + + + +
        +
      • +

        parseMetadataSection

        +
        public IMetadataSection parseMetadataSection(java.lang.String p_110503_1_,
        +                                    com.google.gson.JsonObject p_110503_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/LanguageMetadataSection.html b/javadoc/net/minecraft/client/resources/data/LanguageMetadataSection.html new file mode 100644 index 0000000..d64da24 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/LanguageMetadataSection.html @@ -0,0 +1,259 @@ + + + + + +LanguageMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class LanguageMetadataSection

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      LanguageMetadataSection(java.util.Collection p_i1311_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.CollectiongetLanguages() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        LanguageMetadataSection

        +
        public LanguageMetadataSection(java.util.Collection p_i1311_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getLanguages

        +
        public java.util.Collection getLanguages()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/LanguageMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/LanguageMetadataSectionSerializer.html new file mode 100644 index 0000000..8d46b7f --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/LanguageMetadataSectionSerializer.html @@ -0,0 +1,280 @@ + + + + + +LanguageMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class LanguageMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      LanguageMetadataSectiondeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      java.lang.StringgetSectionName() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        LanguageMetadataSectionSerializer

        +
        public LanguageMetadataSectionSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public LanguageMetadataSection deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                                  java.lang.reflect.Type p_deserialize_2_,
        +                                  com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
      • +
      + + + +
        +
      • +

        getSectionName

        +
        public java.lang.String getSectionName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/PackMetadataSection.html b/javadoc/net/minecraft/client/resources/data/PackMetadataSection.html new file mode 100644 index 0000000..770a00a --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/PackMetadataSection.html @@ -0,0 +1,274 @@ + + + + + +PackMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class PackMetadataSection

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

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      IChatComponentfunc_152805_a() 
      intgetPackFormat() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        PackMetadataSection

        +
        public PackMetadataSection(IChatComponent p_i1034_1_,
        +                   int p_i1034_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        getPackFormat

        +
        public int getPackFormat()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/PackMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/PackMetadataSectionSerializer.html new file mode 100644 index 0000000..9979d1d --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/PackMetadataSectionSerializer.html @@ -0,0 +1,327 @@ + + + + + +PackMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class PackMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      PackMetadataSectiondeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      java.lang.StringgetSectionName() 
      com.google.gson.JsonElementserialize(java.lang.Object p_serialize_1_, + java.lang.reflect.Type p_serialize_2_, + com.google.gson.JsonSerializationContext p_serialize_3_) 
      com.google.gson.JsonElementserialize(PackMetadataSection p_serialize_1_, + java.lang.reflect.Type p_serialize_2_, + com.google.gson.JsonSerializationContext p_serialize_3_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        PackMetadataSectionSerializer

        +
        public PackMetadataSectionSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public PackMetadataSection deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                              java.lang.reflect.Type p_deserialize_2_,
        +                              com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
        +
        Specified by:
        +
        deserialize in interface com.google.gson.JsonDeserializer
        +
        +
      • +
      + + + +
        +
      • +

        serialize

        +
        public com.google.gson.JsonElement serialize(PackMetadataSection p_serialize_1_,
        +                                    java.lang.reflect.Type p_serialize_2_,
        +                                    com.google.gson.JsonSerializationContext p_serialize_3_)
        +
      • +
      + + + + + + + +
        +
      • +

        serialize

        +
        public com.google.gson.JsonElement serialize(java.lang.Object p_serialize_1_,
        +                                    java.lang.reflect.Type p_serialize_2_,
        +                                    com.google.gson.JsonSerializationContext p_serialize_3_)
        +
        +
        Specified by:
        +
        serialize in interface com.google.gson.JsonSerializer
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/TextureMetadataSection.html b/javadoc/net/minecraft/client/resources/data/TextureMetadataSection.html new file mode 100644 index 0000000..dded308 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/TextureMetadataSection.html @@ -0,0 +1,289 @@ + + + + + +TextureMetadataSection (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class TextureMetadataSection

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

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TextureMetadataSection(boolean p_i45102_1_, + boolean p_i45102_2_, + java.util.List p_i45102_3_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.ListgetListMipmaps() 
      booleangetTextureBlur() 
      booleangetTextureClamp() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        TextureMetadataSection

        +
        public TextureMetadataSection(boolean p_i45102_1_,
        +                      boolean p_i45102_2_,
        +                      java.util.List p_i45102_3_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getTextureBlur

        +
        public boolean getTextureBlur()
        +
      • +
      + + + +
        +
      • +

        getTextureClamp

        +
        public boolean getTextureClamp()
        +
      • +
      + + + +
        +
      • +

        getListMipmaps

        +
        public java.util.List getListMipmaps()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/TextureMetadataSectionSerializer.html b/javadoc/net/minecraft/client/resources/data/TextureMetadataSectionSerializer.html new file mode 100644 index 0000000..c33da15 --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/TextureMetadataSectionSerializer.html @@ -0,0 +1,280 @@ + + + + + +TextureMetadataSectionSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.resources.data
+

Class TextureMetadataSectionSerializer

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

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      TextureMetadataSectiondeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      java.lang.StringgetSectionName() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        TextureMetadataSectionSerializer

        +
        public TextureMetadataSectionSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public TextureMetadataSection deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                                 java.lang.reflect.Type p_deserialize_2_,
        +                                 com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
      • +
      + + + +
        +
      • +

        getSectionName

        +
        public java.lang.String getSectionName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/package-frame.html b/javadoc/net/minecraft/client/resources/data/package-frame.html new file mode 100644 index 0000000..9eb542e --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/package-frame.html @@ -0,0 +1,36 @@ + + + + + +net.minecraft.client.resources.data (Forge API) + + + + +

net.minecraft.client.resources.data

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/client/resources/data/package-summary.html b/javadoc/net/minecraft/client/resources/data/package-summary.html new file mode 100644 index 0000000..986710b --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/package-summary.html @@ -0,0 +1,198 @@ + + + + + +net.minecraft.client.resources.data (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.client.resources.data

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/data/package-tree.html b/javadoc/net/minecraft/client/resources/data/package-tree.html new file mode 100644 index 0000000..64baebf --- /dev/null +++ b/javadoc/net/minecraft/client/resources/data/package-tree.html @@ -0,0 +1,150 @@ + + + + + +net.minecraft.client.resources.data Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.client.resources.data

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/package-frame.html b/javadoc/net/minecraft/client/resources/package-frame.html new file mode 100644 index 0000000..22d549c --- /dev/null +++ b/javadoc/net/minecraft/client/resources/package-frame.html @@ -0,0 +1,50 @@ + + + + + +net.minecraft.client.resources (Forge API) + + + + +

net.minecraft.client.resources

+
+

Interfaces

+ +

Classes

+ +

Exceptions

+ +
+ + diff --git a/javadoc/net/minecraft/client/resources/package-summary.html b/javadoc/net/minecraft/client/resources/package-summary.html new file mode 100644 index 0000000..a3d879a --- /dev/null +++ b/javadoc/net/minecraft/client/resources/package-summary.html @@ -0,0 +1,253 @@ + + + + + +net.minecraft.client.resources (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.client.resources

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/resources/package-tree.html b/javadoc/net/minecraft/client/resources/package-tree.html new file mode 100644 index 0000000..90c8a9b --- /dev/null +++ b/javadoc/net/minecraft/client/resources/package-tree.html @@ -0,0 +1,180 @@ + + + + + +net.minecraft.client.resources Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.client.resources

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

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