Package dk.gtz.graphedit.util
Record Class Keymap.Keybind
java.lang.Object
java.lang.Record
dk.gtz.graphedit.util.Keymap.Keybind
- Record Components:
category
- The category of the keybinding. Will not create a menubar item if empty.action
- The action to run when the keybinding is pressed.description
- A short description of the keybinding. Will be used for menu item text in the menubar
- Enclosing class:
- Keymap
public static record Keymap.Keybind(String category, Runnable action, String description)
extends Record
A record to store a graphedit keybinding.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaction()
Returns the value of theaction
record component.category()
Returns the value of thecategory
record component.Returns the value of thedescription
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.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Keybind
Creates an instance of aKeybind
record class.- Parameters:
category
- the value for thecategory
record componentaction
- the value for theaction
record componentdescription
- the value for thedescription
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
category
Returns the value of thecategory
record component.- Returns:
- the value of the
category
record component
-
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-