Searched defs:messageType (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DThreadDialog.java38 int messageType; field in class:ThreadDialog
43 int messageType) {
47 this.messageType = messageType;
51 JOptionPane pane = new JOptionPane(message, messageType);
40 ThreadDialog(Component parentComponent, Object message, String title, int messageType) argument
/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DTextOutputCallback.java51 private int messageType; field in class:TextOutputCallback
64 * @param messageType the message type (<code>INFORMATION</code>,
69 * @exception IllegalArgumentException if <code>messageType</code>
75 public TextOutputCallback(int messageType, String message) { argument
76 if ((messageType != INFORMATION &&
77 messageType != WARNING && messageType != ERROR) ||
81 this.messageType = messageType;
94 return messageType;
[all...]
H A DConfirmationCallback.java132 private int messageType; field in class:ConfirmationCallback
164 * @param messageType the message type (<code>INFORMATION</code>,
176 * @exception IllegalArgumentException if messageType is not either
186 public ConfirmationCallback(int messageType, argument
189 if (messageType < INFORMATION || messageType > ERROR ||
209 this.messageType = messageType;
227 * @param messageType the message type (<code>INFORMATION</code>,
235 * @exception IllegalArgumentException if messageType i
245 ConfirmationCallback(int messageType, String[] options, int defaultOption) argument
299 ConfirmationCallback(String prompt, int messageType, int optionType, int defaultOption) argument
364 ConfirmationCallback(String prompt, int messageType, String[] options, int defaultOption) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DTrayIconPeer.java67 * @param messageType the message type
71 void displayMessage(String caption, String text, String messageType); argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DDHClientKeyExchange.java42 int messageType() { method in class:DHClientKeyExchange
H A DECDHClientKeyExchange.java44 int messageType() { method in class:ECDHClientKeyExchange
H A DKerberosClientKeyExchange.java98 int messageType() { method in class:KerberosClientKeyExchange
H A DRSAClientKeyExchange.java277 int messageType() { method in class:RSAClientKeyExchange
H A DHandshakeMessage.java139 + ", type = " + messageType() + ", len = " + len);
141 s.write(messageType());
150 abstract int messageType(); method in class:HandshakeMessage
175 int messageType() { return ht_hello_request; } method in class:HandshakeMessage.HelloRequest
282 int messageType() { return ht_client_hello; } method in class:HandshakeMessage.ClientHello
338 int messageType() { return ht_server_hello; } method in class:HandshakeMessage.ServerHello
425 int messageType() { return ht_certificate; } method in class:HandshakeMessage.CertificateMsg
537 int messageType() { return ht_server_key_exchange; } method in class:HandshakeMessage.ServerKeyExchange
1376 int messageType() { method in class:HandshakeMessage.CertificateRequest
1494 int messageType() { retur method in class:HandshakeMessage.ServerHelloDone
1775 int messageType() { method in class:HandshakeMessage.CertificateVerify
1992 int messageType() { return ht_finished; } method in class:HandshakeMessage.Finished
[all...]
H A DHandshaker.java829 byte messageType;
839 messageType = (byte)input.getInt8();
862 if (messageType == HandshakeMessage.ht_hello_request) {
864 processMessage(messageType, messageLen);
868 processMessage(messageType, messageLen);
911 state = m.messageType();
925 abstract void processMessage(byte messageType, int messageLen) argument
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DDialogCallbackHandler.java115 confirmation.messageType = JOptionPane.INFORMATION_MESSAGE;
118 confirmation.messageType = JOptionPane.WARNING_MESSAGE;
121 confirmation.messageType = JOptionPane.ERROR_MESSAGE;
199 confirmation.messageType,
228 int messageType = JOptionPane.QUESTION_MESSAGE; field in class:DialogCallbackHandler.ConfirmationInfo
285 messageType = JOptionPane.WARNING_MESSAGE;
288 messageType = JOptionPane.ERROR_MESSAGE;
291 messageType = JOptionPane.INFORMATION_MESSAGE;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/
H A DWsdlBindingSubject.java70 private final WsdlMessageType messageType; field in class:WsdlBindingSubject
78 WsdlBindingSubject(final QName name, final WsdlMessageType messageType, final WsdlNameScope scope, final WsdlBindingSubject parent) { argument
80 this.messageType = messageType;
94 public static WsdlBindingSubject createBindingMessageSubject(QName bindingName, QName operationName, QName messageName, WsdlMessageType messageType) { argument
95 if (messageType == null) {
98 if (messageType == WsdlMessageType.NO_MESSAGE) {
101 if ((messageType == WsdlMessageType.FAULT) && (messageName == null)) {
105 return new WsdlBindingSubject(messageName, messageType, WsdlNameScope.MESSAGE, operationSubject);
113 return this.messageType;
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSheetDialog.java51 int optionType, int messageType,
71 final SheetOptionPane optionPane = new SheetOptionPane(message, messageType, optionType,
225 SheetOptionPane(Object message, int messageType, int optionType, argument
227 super(message, messageType, optionType, icon, options, initialValue);
50 showOptionDialog(final VMPanel vmPanel, Object message, int optionType, int messageType, Icon icon, Object[] options, Object initialValue) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DTrayIcon.java651 * @param messageType an enum indicating the message type
655 public void displayMessage(String caption, String text, MessageType messageType) { argument
662 peer.displayMessage(caption, text, messageType.name());
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTrayIcon.java111 final String messageType) {
114 displayMessageOnEDT(caption, text, messageType);
119 displayMessageOnEDT(caption, text, messageType);
253 String messageType) {
259 Icon icon = getIconForMessageType(messageType);
434 private static Icon getIconForMessageType(String messageType) { argument
435 if (messageType.equals("ERROR")) {
437 } else if (messageType.equals("WARNING")) {
110 displayMessage(final String caption, final String text, final String messageType) argument
252 displayMessageOnEDT(String caption, String text, String messageType) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTrayIconPeer.java99 public void displayMessage(String caption, String text, String messageType) { argument
107 _displayMessage(caption, text, messageType);
185 native void _displayMessage(String caption, String text, String messageType); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DInfoWindow.java337 public void display(String caption, String text, String messageType) { argument
341 displayer.display(caption, text, messageType);
344 private void _display(String caption, String text, String messageType) { argument
377 if ("ERROR".equals(messageType)) {
379 } else if ("WARNING".equals(messageType)) {
381 } else if ("INFO".equals(messageType)) {
475 _display(msg.caption, msg.text, msg.messageType);
479 void display(String caption, String text, String messageType) { argument
480 messageQueue.offer(new Message(caption, text, messageType));
485 String caption, text, messageType; field in class:InfoWindow.Balloon.Message
487 Message(String caption, String text, String messageType) argument
[all...]
H A DXTrayIconPeer.java323 public void displayMessage(String caption, String text, String messageType) { argument
331 balloon.display(caption, text, messageType);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJOptionPane.java165 * <dt>messageType<dd>Defines the style of the message. The Look and Feel
199 * value for this is determined by the <code>messageType</code> parameter.
385 public static final String MESSAGE_TYPE_PROPERTY = "messageType";
406 protected int messageType; field in class:JOptionPane
504 * <code>title</code> and message type <code>messageType</code>.
511 * @param messageType the type of message that is to be displayed:
523 Object message, String title, int messageType)
526 messageType, null, null, null);
547 * @param messageType the type of message to be displayed:
566 Object message, String title, int messageType, Ico
522 showInputDialog(Component parentComponent, Object message, String title, int messageType) argument
565 showInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue) argument
635 showMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
664 showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon) argument
755 showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType) argument
793 showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon) argument
854 showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue) argument
1071 showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
1096 showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon) argument
1178 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType) argument
1217 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon) argument
1272 showInternalOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue) argument
1381 showInternalInputDialog(Component parentComponent, Object message, String title, int messageType) argument
1416 showInternalInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue) argument
1734 JOptionPane(Object message, int messageType) argument
1754 JOptionPane(Object message, int messageType, int optionType) argument
1775 JOptionPane(Object message, int messageType, int optionType, Icon icon) argument
1807 JOptionPane(Object message, int messageType, int optionType, Icon icon, Object[] options) argument
1835 JOptionPane(Object message, int messageType, int optionType, Icon icon, Object[] options, Object initialValue) argument
2317 styleFromMessageType(int messageType) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicOptionPaneUI.java549 protected Icon getIconForType(int messageType) { argument
550 if(messageType < 0 || messageType > 3)
553 switch(messageType) {
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java836 // outgoing messageType and sequenceNum
837 protected final byte[] messageType = new byte[2]; field in class:DigestMD5Base.DigestIntegrity
867 intToNetworkByteOrder(1, messageType, 0, 2);
964 System.arraycopy(messageType, 0, wrapped, len+10, 2);
1016 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST20:messageType: ",
1039 if (!Arrays.equals(messageType, msgType)) {
1371 System.arraycopy(messageType, 0, wrapped, cipherBlock.length, 2);
1451 traceOutput(DP_CLASS_NAME, "unwrap", "DIGEST37:messageType: ",
1498 if (!Arrays.equals(messageType, msgType)) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java879 private Object showNewFolderDialog(final Component parentComponent, final Object message, final String title, final int messageType, final Icon icon, final Object[] options, final Object initialSelectionValue) { argument
880 final JOptionPane pane = new JOptionPane(message, messageType, JOptionPane.OK_CANCEL_OPTION, icon, options, null);
907 JOptionPane.PLAIN_MESSAGE, // messageType

Completed in 112 milliseconds