Lines Matching refs:icon

113  *  <td bgcolor=#FFe0d0 rowspan=2>icon</td>
167 * will often provide a default icon. The possible values are:
198 * <dt>icon<dd>A decorative icon to be placed in the dialog box. A default
360 // Message types. Used by the UI to determine what icon to display,
371 /** No icon is used. */
374 /** Bound property name for <code>icon</code>. */
375 public static final String ICON_PROPERTY = "icon";
398 transient protected Icon icon;
553 * @param icon the <code>Icon</code> image to display
566 Object message, String title, int messageType, Icon icon,
570 OK_CANCEL_OPTION, icon,
616 * icon determined by the <code>messageType</code> parameter.
657 * @param icon an icon to display in the dialog that helps the user
665 Object message, String title, int messageType, Icon icon)
668 messageType, icon, null, null);
727 * parameter determines the icon to display.
729 * a default icon from the Look and Feel.
743 * primarily used to determine the icon from the pluggable
763 * Brings up a dialog with a specified icon, where the number of
766 * a default icon from the look and feel.
780 * primarily used to determine the icon from the pluggable
786 * @param icon the icon to display in the dialog
795 int messageType, Icon icon) throws HeadlessException {
797 messageType, icon, null, null);
801 * Brings up a dialog with a specified icon, where the initial
813 * a default icon from the look and feel.
829 * primarily used to determine the icon from the
835 * @param icon the icon to display in the dialog
856 Icon icon, Object[] options, Object initialValue)
859 optionType, icon,
1055 * using a default icon determined by the <code>messageType</code>
1093 * @param icon an icon to display in the dialog that helps the user
1099 Icon icon){
1101 messageType, icon, null, null);
1152 * the <code>messageType</code> parameter determines the icon to display.
1154 * a default icon from the Look and Feel.
1171 * primarily used to determine the icon from the
1187 * Brings up an internal dialog panel with a specified icon, where
1191 * a default icon from the look and feel.
1209 * primarily used to determine the icon from the pluggable
1214 * @param icon the icon to display in the dialog
1220 int messageType, Icon icon) {
1222 messageType, icon, null, null);
1226 * Brings up an internal dialog panel with a specified icon, where
1237 * a default icon from the look and feel.
1254 * primarily used to determine the icon from the
1259 * @param icon the icon to display in the dialog
1275 int messageType, Icon icon,
1278 optionType, icon, options, initialValue);
1408 * @param icon the <code>Icon</code> image to display
1417 Object message, String title, int messageType, Icon icon,
1420 OK_CANCEL_OPTION, icon, null, null);
1760 * with the specified message type, options, and icon.
1773 * @param icon the <code>Icon</code> image to display
1776 Icon icon) {
1777 this(message, messageType, optionType, icon, null);
1782 * with the specified message type, icon, and options.
1804 * @param icon the <code>Icon</code> image to display
1808 Icon icon, Object[] options) {
1809 this(message, messageType, optionType, icon, options, null);
1814 * with the specified message type, icon, and options, with the
1829 * @param icon the Icon image to display
1836 Icon icon, Object[] options, Object initialValue) {
1841 this.icon = icon;
1928 * Sets the icon to display. If non-<code>null</code>, the look and feel
1929 * does not provide an icon.
1936 * description: The option pane's type icon.
1939 Object oldIcon = icon;
1941 icon = newIcon;
1942 firePropertyChange(ICON_PROPERTY, oldIcon, icon);
1946 * Returns the icon this pane displays.
1952 return icon;
2064 * icon to display (if not supplied) as well as potentially how to
2338 // Save the icon, if its Serializable.
2339 if(icon != null && icon instanceof Serializable) {
2340 values.addElement("icon");
2341 values.addElement(icon);
2415 equals("icon")) {
2416 icon = (Icon)values.elementAt(++indexCounter);
2475 String iconString = (icon != null ?
2476 icon.toString() : "");
2507 ",icon=" + iconString +