Package net.runelite.api.events
Class WidgetClosed
- java.lang.Object
-
- net.runelite.api.events.WidgetClosed
-
public final class WidgetClosed extends java.lang.Object
Posted when an interface is about to be closed
-
-
Constructor Summary
Constructors Constructor Description WidgetClosed(int groupId, int modalMode, boolean unload)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getGroupId()
The ID of the interface that is closedint
getModalMode()
int
hashCode()
boolean
isUnload()
If the interface will be unloaded or if it will be immediately reloadedjava.lang.String
toString()
-
-
-
Method Detail
-
getGroupId
public int getGroupId()
The ID of the interface that is closed
-
getModalMode
public int getModalMode()
- See Also:
WidgetModalMode
-
isUnload
public boolean isUnload()
If the interface will be unloaded or if it will be immediately reloaded
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-