Merge pull request #1101 from runelite-extended/gradle

Migrate to Gradle
This commit is contained in:
Tyler Bochard
2019-07-24 01:16:52 -04:00
committed by GitHub
78 changed files with 4061 additions and 2784 deletions

View File

@@ -25,20 +25,19 @@
package net.runelite.api.events;
import net.runelite.api.GrandExchangeOffer;
import net.runelite.api.GrandExchangeOfferState;
import lombok.Data;
/**
* An event where a {@link GrandExchangeOffer} has been updated with
* An event where a {GrandExchangeOffer} has been updated with
* new information.
* <p>
* When the client initially logs in, this event is called for all grand
* exchange slots with the {@link GrandExchangeOfferState#EMPTY} state,
* exchange slots with the {GrandExchangeOfferState#EMPTY} state,
* regardless of whether any slots have offers. Once the exchange is
* initialized, the client then updates any offers with items as it
* receives information from the server.
* <p>
* See {@link GrandExchangeOfferState} for potential states an offer
* See {GrandExchangeOfferState} for potential states an offer
* can change into.
*/
@Data

View File

@@ -24,15 +24,13 @@
*/
package net.runelite.api.kit;
import net.runelite.api.PlayerAppearance;
/**
* Represents an equipment slot in a players composition.
* <p>
* These values are intended for use with {@link PlayerAppearance} equipment
* These values are intended for use with {PlayerAppearance} equipment
* slots. For obtaining information about equipment in the local players
* equipment {@link net.runelite.api.ItemContainer}, use
* {@link net.runelite.api.EquipmentInventorySlot}.
* equipment {net.runelite.api.ItemContainer}, use
* {net.runelite.api.EquipmentInventorySlot}.
*/
public enum KitType
{
@@ -61,7 +59,7 @@ public enum KitType
}
/**
* Gets the raw equipment index for use in {@link PlayerAppearance#getEquipmentIds()}.
* Gets the raw equipment index for use in {PlayerAppearance#getEquipmentIds()}.
*
* @return raw equipment index
*/

View File

@@ -24,12 +24,11 @@
*/
package net.runelite.api.vars;
import net.runelite.api.VarClientInt;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
/**
* An enumeration of input types for {@link VarClientInt#INPUT_TYPE}.
* An enumeration of input types for {VarClientInt#INPUT_TYPE}.
*/
@Getter
@RequiredArgsConstructor

View File

@@ -29,7 +29,6 @@ import java.util.Collection;
import net.runelite.api.FontTypeFace;
import net.runelite.api.Point;
import net.runelite.api.SpriteID;
/**
* Represents an on-screen UI element that is drawn on the canvas.
@@ -254,7 +253,7 @@ public interface Widget
* Gets the sprite ID displayed in the widget.
*
* @return the sprite ID
* @see SpriteID
* SpriteID
*/
int getSpriteId();
@@ -262,7 +261,7 @@ public interface Widget
* Sets the sprite ID displayed in the widget.
*
* @param spriteId the sprite ID
* @see SpriteID
* SpriteID
*/
void setSpriteId(int spriteId);