Home | History | Annotate | Download | only in callback

Lines Matching refs:messageType

52     private int messageType;
62 public ConfirmationCallback(int messageType, int optionType, int defaultOption) {
64 if (messageType > ERROR || messageType < INFORMATION) {
87 this.messageType = messageType;
92 public ConfirmationCallback(int messageType, String[] options, int defaultOption) {
94 if (messageType > ERROR || messageType < INFORMATION) {
113 this.messageType = messageType;
116 public ConfirmationCallback(String prompt, int messageType, int optionType,
123 if (messageType > ERROR || messageType < INFORMATION) {
147 this.messageType = messageType;
152 public ConfirmationCallback(String prompt, int messageType, String[] options,
159 if (messageType > ERROR || messageType < INFORMATION) {
178 this.messageType = messageType;
187 return messageType;