Lines Matching refs:pane

156   /** The error pane. */
159 /** The last displayed message in the error pane. */
245 * Tells whether this panel should be contained in a scroll pane or not.
248 * pane and <CODE>false</CODE> otherwise.
342 * Creates and adds an error pane. Is up to the caller to set the proper
354 * Adds an error pane to the provided container. Is up to the caller to set
385 * Creates the error pane.
952 * will display an error message in the error pane if the server is not
1021 * error pane has already been updated.
1155 * Updates the contents of an editor pane using the error format.
1157 * @param pane
1158 * the editor pane to be updated.
1168 protected void updateErrorPane(final JEditorPane pane, final LocalizableMessage title, final Font titleFont,
1171 updatePane(pane, title, titleFont, details, detailsFont, PanelType.ERROR);
1175 * Updates the contents of an editor pane using the confirmation format.
1177 * @param pane
1178 * the editor pane to be updated.
1188 protected void updateConfirmationPane(final JEditorPane pane, final LocalizableMessage title, final Font titleFont,
1191 updatePane(pane, title, titleFont, details, detailsFont, PanelType.CONFIRMATION);
1208 * Updates the contents of an editor pane using the provided format.
1210 * @param pane
1211 * the editor pane to be updated.
1223 private void updatePane(final JEditorPane pane, final LocalizableMessage title, final Font titleFont,
1232 JEditorPane wrappedPane = Utilities.makeHtmlPane(null, pane.getFont());
1246 pane.setText(text);
1247 pane.setPreferredSize(d);
1259 pane.invalidate();