Package net.runelite.api.events
Class GroundObjectChanged
- java.lang.Object
-
- net.runelite.api.events.GroundObjectChanged
-
public class GroundObjectChanged extends java.lang.ObjectAn event where theGroundObjecton aTilehas been changed.
-
-
Constructor Summary
Constructors Constructor Description GroundObjectChanged()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)GroundObjectgetGroundObject()The new ground object on the tile.GroundObjectgetPrevious()The ground object that has been replaced.TilegetTile()The affected tile.inthashCode()voidsetGroundObject(GroundObject groundObject)The new ground object on the tile.voidsetPrevious(GroundObject previous)The ground object that has been replaced.voidsetTile(Tile tile)The affected tile.java.lang.StringtoString()
-
-
-
Method Detail
-
getTile
public Tile getTile()
The affected tile.
-
getPrevious
public GroundObject getPrevious()
The ground object that has been replaced.
-
getGroundObject
public GroundObject getGroundObject()
The new ground object on the tile.
-
setTile
public void setTile(Tile tile)
The affected tile.
-
setPrevious
public void setPrevious(GroundObject previous)
The ground object that has been replaced.
-
setGroundObject
public void setGroundObject(GroundObject groundObject)
The new ground object on the tile.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-