com.jgcomptech.tools.dialogs.MessageBoxButtons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-ultimate-tools Show documentation
Show all versions of java-ultimate-tools Show documentation
A large repository of scripts for use in any Java program.
package com.jgcomptech.tools.dialogs;
/**
* Used to specify what buttons are displayed on a message box.
* @since 1.3.0
*/
public enum MessageBoxButtons {
AbortRetryIgnore,
CancelTryAgainContinue,
OK,
OKCancel,
RetryCancel,
YesNo,
YesNoCancel,
Close,
SubmitCancel,
NextPrevious,
NextPreviousCancel,
Finish,
FinishCancel,
Apply,
ApplyCancel,
}