project: RuneLiteMenuEntry overritde toString

This commit is contained in:
Owain van Brakel
2021-12-22 15:09:56 +01:00
parent 18050c604c
commit f560ec6386

View File

@@ -341,4 +341,11 @@ public class RuneLiteMenuEntry implements MenuEntry
return hash;
}
@Override
public String toString()
{
return "MenuEntryImpl(getOption=" + this.getOption() + ", getTarget=" + this.getTarget() + ", getIdentifier=" + this.getIdentifier() + ", getType=" + this.getType() + ", getParam0=" + this.getParam0() + ", getParam1=" + this.getParam1() + ", isForceLeftClick=" + this.isForceLeftClick() + ", isDeprioritized=" + this.isDeprioritized() + ")";
}
}