Uses of Class
net.md_5.bungee.api.dialog.action.DialogClickAction
-
Packages that use DialogClickAction Package Description net.md_5.bungee.api.dialog Contains the core classes for the display of aDialog.net.md_5.bungee.api.dialog.action Contains the different actions/buttons for aDialog. -
-
Uses of DialogClickAction in net.md_5.bungee.api.dialog
Methods in net.md_5.bungee.api.dialog that return DialogClickAction Modifier and Type Method Description DialogClickActionNoticeDialog. action()The "OK" action button for the dialog.DialogClickActionConfirmationDialog. no()The "no" click action / bottom (appears on the right).DialogClickActionConfirmationDialog. yes()The "yes" click action / bottom (appears on the left).Methods in net.md_5.bungee.api.dialog that return types with arguments of type DialogClickAction Modifier and Type Method Description List<DialogClickAction>MultiActionDialog. actions()The action buttons in the dialog.Methods in net.md_5.bungee.api.dialog with parameters of type DialogClickAction Modifier and Type Method Description NoticeDialogNoticeDialog. action(DialogClickAction action)The "OK" action button for the dialog.ConfirmationDialogConfirmationDialog. no(DialogClickAction no)The "no" click action / bottom (appears on the right).ConfirmationDialogConfirmationDialog. yes(DialogClickAction yes)The "yes" click action / bottom (appears on the left).Method parameters in net.md_5.bungee.api.dialog with type arguments of type DialogClickAction Modifier and Type Method Description MultiActionDialogMultiActionDialog. actions(List<DialogClickAction> actions)The action buttons in the dialog.Constructors in net.md_5.bungee.api.dialog with parameters of type DialogClickAction Constructor Description ConfirmationDialog(DialogBase base, DialogClickAction yes, DialogClickAction no)Creates a newConfirmationDialoginstance.MultiActionDialog(DialogBase base, DialogClickAction... actions)NoticeDialog(DialogBase base, DialogClickAction action)Creates a newNoticeDialoginstance.Constructor parameters in net.md_5.bungee.api.dialog with type arguments of type DialogClickAction Constructor Description MultiActionDialog(DialogBase base, List<DialogClickAction> actions, int columns, ClickEvent onCancel) -
Uses of DialogClickAction in net.md_5.bungee.api.dialog.action
Methods in net.md_5.bungee.api.dialog.action that return DialogClickAction Modifier and Type Method Description DialogClickActionDialogClickAction. onClick(ClickEvent onClick)The optional action to take on click.
-