Package net.mcreator.ui.notifications
Record Class NotificationsRenderer.ActionButton
java.lang.Object
java.lang.Record
net.mcreator.ui.notifications.NotificationsRenderer.ActionButton
- Enclosing class:
NotificationsRenderer
public static record NotificationsRenderer.ActionButton(String text, ActionListener action, boolean closePopup)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionActionButton(String text, ActionListener action) ActionButton(String text, ActionListener action, boolean closePopup) Creates an instance of aActionButtonrecord class. -
Method Summary
Modifier and TypeMethodDescriptionaction()Returns the value of theactionrecord component.booleanReturns the value of theclosePopuprecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.text()Returns the value of thetextrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ActionButton
-
ActionButton
Creates an instance of aActionButtonrecord class.- Parameters:
text- the value for thetextrecord componentaction- the value for theactionrecord componentclosePopup- the value for theclosePopuprecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-
action
Returns the value of theactionrecord component.- Returns:
- the value of the
actionrecord component
-
closePopup
public boolean closePopup()Returns the value of theclosePopuprecord component.- Returns:
- the value of the
closePopuprecord component
-