Uses of Class
net.md_5.bungee.api.dialog.action.DialogClickAction
Packages that use DialogClickAction
Package
Description
Contains the core classes for the display of a
Dialog.Contains the different actions/buttons for a
Dialog.-
Uses of DialogClickAction in net.md_5.bungee.api.dialog
Methods in net.md_5.bungee.api.dialog that return DialogClickActionModifier and TypeMethodDescriptionNoticeDialog.action()The "OK" action button for the dialog.ConfirmationDialog.no()The "no" click action / bottom (appears on the right).ConfirmationDialog.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 DialogClickActionMethods in net.md_5.bungee.api.dialog with parameters of type DialogClickActionModifier and TypeMethodDescriptionNoticeDialog.action(DialogClickAction action) The "OK" action button for the dialog.ConfirmationDialog.no(DialogClickAction no) The "no" click action / bottom (appears on the right).ConfirmationDialog.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 DialogClickActionModifier and TypeMethodDescriptionMultiActionDialog.actions(List<DialogClickAction> actions) The action buttons in the dialog.Constructors in net.md_5.bungee.api.dialog with parameters of type DialogClickActionModifierConstructorDescriptionConfirmationDialog(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 DialogClickActionModifierConstructorDescriptionMultiActionDialog(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 DialogClickActionModifier and TypeMethodDescriptionDialogClickAction.onClick(ClickEvent onClick) The optional action to take on click.