Searched refs:optionType (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DConfirmationCallback.java45 * with <code>options</code> instead of an <code>optionType</code>.
53 * <code>optionType</code> to a <code>ConfirmationCallback</code>
63 * <code>optionType</code> to a <code>ConfirmationCallback</code>
73 * <code>optionType</code> to a <code>ConfirmationCallback</code>
82 * <p> If an <code>optionType</code> was specified to this
91 * <p> If an <code>optionType</code> was specified to this
100 * <p> If an <code>optionType</code> was specified to this
109 * <p> If an <code>optionType</code> was specified to this
137 private int optionType = UNSPECIFIED_OPTION; field in class:ConfirmationCallback
167 * @param optionType th
186 ConfirmationCallback(int messageType, int optionType, int defaultOption) argument
299 ConfirmationCallback(String prompt, int messageType, int optionType, int defaultOption) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJOptionPane.java175 * <dt>optionType<dd>Defines the set of option buttons that appear at
386 /** Bound property name for <code>optionType</code>. */
387 public static final String OPTION_TYPE_PROPERTY = "optionType";
413 protected int optionType; field in class:JOptionPane
697 * by the <code>optionType</code> parameter.
706 * @param optionType an int designating the options available on the dialog:
717 Object message, String title, int optionType)
719 return showConfirmDialog(parentComponent, message, title, optionType,
725 * by the <code>optionType</code> parameter, where the
738 * @param optionType a
716 showConfirmDialog(Component parentComponent, Object message, String title, int optionType) 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
1142 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType) 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
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
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DDialogCallbackHandler.java198 confirmation.optionType,
224 int optionType = JOptionPane.OK_CANCEL_OPTION; field in class:DialogCallbackHandler.ConfirmationInfo
241 optionType = JOptionPane.YES_NO_OPTION;
249 optionType = JOptionPane.YES_NO_CANCEL_OPTION;
258 optionType = JOptionPane.OK_CANCEL_OPTION;
H A DTextCallbackHandler.java189 int optionType = confirmation.getOptionType();
190 switch (optionType) {
219 confirmation, "Unrecognized option type: " + optionType);
234 if (optionType == ConfirmationCallback.UNSPECIFIED_OPTION) {
/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/sample/scripting/scriptpad/src/resources/
H A Dgui.js249 var optionType = JOptionPane.YES_NO_OPTION;
250 result = JOptionPane.showConfirmDialog(window, msg, title, optionType);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicOptionPaneUI.java743 * set, they will be provided, otherwise if the optionType is
1174 int optionType = optionPane.getOptionType();
1184 optionType == JOptionPane.DEFAULT_OPTION ||
1185 ((optionType == JOptionPane.YES_NO_OPTION ||
1186 optionType == JOptionPane.YES_NO_CANCEL_OPTION ||
1187 optionType == JOptionPane.OK_CANCEL_OPTION) &&
1193 if (optionType == JOptionPane.OK_CANCEL_OPTION &&
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js767 var optionType = JOptionPane.YES_NO_OPTION;
768 result = JOptionPane.showConfirmDialog(null, msg, title, optionType);

Completed in 55 milliseconds