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
ConstructorDescriptionActionButton
(String text, ActionListener action) ActionButton
(String text, ActionListener action, boolean closePopup) Creates an instance of aActionButton
record class. -
Method Summary
Modifier and TypeMethodDescriptionaction()
Returns the value of theaction
record component.boolean
Returns the value of theclosePopup
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.text()
Returns the value of thetext
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ActionButton
-
ActionButton
Creates an instance of aActionButton
record class.- Parameters:
text
- the value for thetext
record componentaction
- the value for theaction
record componentclosePopup
- the value for theclosePopup
record 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 thetext
record component.- Returns:
- the value of the
text
record component
-
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
closePopup
public boolean closePopup()Returns the value of theclosePopup
record component.- Returns:
- the value of the
closePopup
record component
-