From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../entity/ai/attributes/AttributeModifier.html | 392 +++++++++++++++++++ .../entity/ai/attributes/BaseAttribute.html | 342 +++++++++++++++++ .../entity/ai/attributes/BaseAttributeMap.html | 385 +++++++++++++++++++ .../minecraft/entity/ai/attributes/IAttribute.html | 247 ++++++++++++ .../entity/ai/attributes/IAttributeInstance.html | 312 ++++++++++++++++ .../ai/attributes/ModifiableAttributeInstance.html | 414 +++++++++++++++++++++ .../entity/ai/attributes/RangedAttribute.html | 302 +++++++++++++++ .../ai/attributes/ServersideAttributeMap.html | 390 +++++++++++++++++++ .../entity/ai/attributes/package-frame.html | 29 ++ .../entity/ai/attributes/package-summary.html | 170 +++++++++ .../entity/ai/attributes/package-tree.html | 142 +++++++ 11 files changed, 3125 insertions(+) create mode 100644 javadoc/net/minecraft/entity/ai/attributes/AttributeModifier.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/BaseAttribute.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/BaseAttributeMap.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/IAttribute.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/IAttributeInstance.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/RangedAttribute.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/ServersideAttributeMap.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/package-frame.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/package-summary.html create mode 100644 javadoc/net/minecraft/entity/ai/attributes/package-tree.html (limited to 'javadoc/net/minecraft/entity/ai/attributes') diff --git a/javadoc/net/minecraft/entity/ai/attributes/AttributeModifier.html b/javadoc/net/minecraft/entity/ai/attributes/AttributeModifier.html new file mode 100644 index 0000000..1f1f514 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/AttributeModifier.html @@ -0,0 +1,392 @@ + + + + + +AttributeModifier (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class AttributeModifier

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

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      AttributeModifier(java.lang.String p_i1605_1_, + double p_i1605_2_, + int p_i1605_4_) 
      AttributeModifier(java.util.UUID p_i1606_1_, + java.lang.String p_i1606_2_, + double p_i1606_3_, + int p_i1606_5_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object p_equals_1_) 
      doublegetAmount() 
      java.util.UUIDgetID() 
      java.lang.StringgetName() 
      intgetOperation() 
      inthashCode() 
      booleanisSaved() 
      AttributeModifiersetSaved(boolean p_111168_1_) 
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Constructor Detail

      + + + +
        +
      • +

        AttributeModifier

        +
        public AttributeModifier(java.lang.String p_i1605_1_,
        +                 double p_i1605_2_,
        +                 int p_i1605_4_)
        +
      • +
      + + + +
        +
      • +

        AttributeModifier

        +
        public AttributeModifier(java.util.UUID p_i1606_1_,
        +                 java.lang.String p_i1606_2_,
        +                 double p_i1606_3_,
        +                 int p_i1606_5_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getID

        +
        public java.util.UUID getID()
        +
      • +
      + + + +
        +
      • +

        getName

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

        getOperation

        +
        public int getOperation()
        +
      • +
      + + + +
        +
      • +

        getAmount

        +
        public double getAmount()
        +
      • +
      + + + +
        +
      • +

        isSaved

        +
        public boolean isSaved()
        +
      • +
      + + + + + + + +
        +
      • +

        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/entity/ai/attributes/BaseAttribute.html b/javadoc/net/minecraft/entity/ai/attributes/BaseAttribute.html new file mode 100644 index 0000000..8dd7380 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/BaseAttribute.html @@ -0,0 +1,342 @@ + + + + + +BaseAttribute (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class BaseAttribute

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    IAttribute
    +
    +
    +
    Direct Known Subclasses:
    +
    RangedAttribute
    +
    +
    +
    +
    public abstract class BaseAttribute
    +extends java.lang.Object
    +implements IAttribute
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + +
      Constructors 
      ModifierConstructor and Description
      protected BaseAttribute(java.lang.String p_i1607_1_, + double p_i1607_2_) 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BaseAttribute

        +
        protected BaseAttribute(java.lang.String p_i1607_1_,
        +             double p_i1607_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

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

        setShouldWatch

        +
        public BaseAttribute setShouldWatch(boolean p_111112_1_)
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/BaseAttributeMap.html b/javadoc/net/minecraft/entity/ai/attributes/BaseAttributeMap.html new file mode 100644 index 0000000..b99d681 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/BaseAttributeMap.html @@ -0,0 +1,385 @@ + + + + + +BaseAttributeMap (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class BaseAttributeMap

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    ServersideAttributeMap
    +
    +
    +
    +
    public abstract class BaseAttributeMap
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        attributes

        +
        protected final java.util.Map attributes
        +
      • +
      + + + +
        +
      • +

        attributesByName

        +
        protected final java.util.Map attributesByName
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BaseAttributeMap

        +
        public BaseAttributeMap()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        getAttributeInstanceByName

        +
        public IAttributeInstance getAttributeInstanceByName(java.lang.String p_111152_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        getAllAttributes

        +
        public java.util.Collection getAllAttributes()
        +
      • +
      + + + + + + + +
        +
      • +

        removeAttributeModifiers

        +
        public void removeAttributeModifiers(com.google.common.collect.Multimap p_111148_1_)
        +
      • +
      + + + +
        +
      • +

        applyAttributeModifiers

        +
        public void applyAttributeModifiers(com.google.common.collect.Multimap p_111147_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/IAttribute.html b/javadoc/net/minecraft/entity/ai/attributes/IAttribute.html new file mode 100644 index 0000000..4ee82e0 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/IAttribute.html @@ -0,0 +1,247 @@ + + + + + +IAttribute (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Interface IAttribute

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

      Method Detail

      + + + +
        +
      • +

        getAttributeUnlocalizedName

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

        clampValue

        +
        double clampValue(double p_111109_1_)
        +
      • +
      + + + +
        +
      • +

        getDefaultValue

        +
        double getDefaultValue()
        +
      • +
      + + + +
        +
      • +

        getShouldWatch

        +
        boolean getShouldWatch()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/IAttributeInstance.html b/javadoc/net/minecraft/entity/ai/attributes/IAttributeInstance.html new file mode 100644 index 0000000..a8c86ed --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/IAttributeInstance.html @@ -0,0 +1,312 @@ + + + + + +IAttributeInstance (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Interface IAttributeInstance

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

      Method Detail

      + + + + + + + +
        +
      • +

        getBaseValue

        +
        double getBaseValue()
        +
      • +
      + + + +
        +
      • +

        setBaseValue

        +
        void setBaseValue(double p_111128_1_)
        +
      • +
      + + + +
        +
      • +

        func_111122_c

        +
        java.util.Collection func_111122_c()
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        removeAllModifiers

        +
        void removeAllModifiers()
        +
      • +
      + + + +
        +
      • +

        getAttributeValue

        +
        double getAttributeValue()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.html b/javadoc/net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.html new file mode 100644 index 0000000..b464460 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.html @@ -0,0 +1,414 @@ + + + + + +ModifiableAttributeInstance (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class ModifiableAttributeInstance

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/RangedAttribute.html b/javadoc/net/minecraft/entity/ai/attributes/RangedAttribute.html new file mode 100644 index 0000000..bb19678 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/RangedAttribute.html @@ -0,0 +1,302 @@ + + + + + +RangedAttribute (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class RangedAttribute

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

      Constructor Detail

      + + + +
        +
      • +

        RangedAttribute

        +
        public RangedAttribute(java.lang.String p_i1609_1_,
        +               double p_i1609_2_,
        +               double p_i1609_4_,
        +               double p_i1609_6_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setDescription

        +
        public RangedAttribute setDescription(java.lang.String p_111117_1_)
        +
      • +
      + + + +
        +
      • +

        getDescription

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

        clampValue

        +
        public double clampValue(double p_111109_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/ServersideAttributeMap.html b/javadoc/net/minecraft/entity/ai/attributes/ServersideAttributeMap.html new file mode 100644 index 0000000..4da45e1 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/ServersideAttributeMap.html @@ -0,0 +1,390 @@ + + + + + +ServersideAttributeMap (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.entity.ai.attributes
+

Class ServersideAttributeMap

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/package-frame.html b/javadoc/net/minecraft/entity/ai/attributes/package-frame.html new file mode 100644 index 0000000..d64d873 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/package-frame.html @@ -0,0 +1,29 @@ + + + + + +net.minecraft.entity.ai.attributes (Forge API) + + + + +

net.minecraft.entity.ai.attributes

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/entity/ai/attributes/package-summary.html b/javadoc/net/minecraft/entity/ai/attributes/package-summary.html new file mode 100644 index 0000000..bd36c21 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/package-summary.html @@ -0,0 +1,170 @@ + + + + + +net.minecraft.entity.ai.attributes (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.entity.ai.attributes

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/entity/ai/attributes/package-tree.html b/javadoc/net/minecraft/entity/ai/attributes/package-tree.html new file mode 100644 index 0000000..151e638 --- /dev/null +++ b/javadoc/net/minecraft/entity/ai/attributes/package-tree.html @@ -0,0 +1,142 @@ + + + + + +net.minecraft.entity.ai.attributes Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.entity.ai.attributes

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

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