• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ErrorReporter类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.jdesktop.swingx.error.ErrorReporter的典型用法代码示例。如果您正苦于以下问题:Java ErrorReporter类的具体用法?Java ErrorReporter怎么用?Java ErrorReporter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ErrorReporter类属于org.jdesktop.swingx.error包,在下文中一共展示了ErrorReporter类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: JXErrorPaneExt

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
public JXErrorPaneExt() {

        Configuration configuration = AppBeans.get(Configuration.NAME);
        ClientConfig clientConfig = configuration.getConfig(ClientConfig.class);
        Messages messages = AppBeans.get(Messages.NAME);
        Locale locale = App.getInstance().getLocale();

        UIManager.put("JXErrorPane.details_expand_text",
                messages.getMainMessage("JXErrorPane.details_expand_text", locale));
        UIManager.put("JXErrorPane.details_contract_text",
                messages.getMainMessage("JXErrorPane.details_contract_text", locale));
        UIManager.put("JXErrorPane.ok_button_text",
                messages.getMainMessage("JXErrorPane.ok_button_text", locale));
        UIManager.put("JXErrorPane.fatal_button_text",
                messages.getMainMessage("JXErrorPane.fatal_button_text", locale));
        UIManager.put("JXErrorPane.report_button_text",
                messages.getMainMessage("JXErrorPane.report_button_text", locale));
        UIManager.put("JXErrorPane.copy_to_clipboard_button_text",
                messages.getMainMessage("JXErrorPane.copy_to_clipboard_button_text", locale));

        ErrorPaneUIExt ui = new ErrorPaneUIExt();
        setUI(ui);

        JButton copyButton = ui.getCopyToClipboardButton();
        copyToClipboardListener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                TopLevelFrame mainFrame = App.getInstance().getMainFrame();
                mainFrame.showNotification(messages.getMainMessage("errorPane.copingSuccessful", locale),
                        Frame.NotificationType.TRAY);
            }
        };
        copyButton.addActionListener(copyToClipboardListener);

        UserSessionSource userSessionSource = AppBeans.get(UserSessionSource.NAME);
        Security security = AppBeans.get(Security.NAME);
        if (userSessionSource == null || !security.isSpecificPermitted("cuba.gui.showExceptionDetails")) {
            copyButton.setVisible(false);
        }

        String supportEmail = null;
        if (App.getInstance().getConnection().isConnected()) {
            supportEmail = clientConfig.getSupportEmail();
        }

        if (StringUtils.isNotBlank(supportEmail)) {
            setErrorReporter(new ErrorReporter() {
                @Override
                public void reportError(ErrorInfo info) throws NullPointerException {
                    sendSupportEmail(info);
                    ((ErrorPaneUIExt) getUI()).setEnabled(false);
                }
            });
        }
    }
 
开发者ID:cuba-platform,项目名称:cuba,代码行数:56,代码来源:JXErrorPaneExt.java


示例2: setErrorReporter

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
/**
 * Sets the {@link ErrorReporter} delegate to use. This delegate is called
 * automatically when the report action is fired.
 *
 * @param reporter the ErrorReporter to use. If null, the report button will
 *                 not be shown in the error dialog.
 */
public void setErrorReporter(ErrorReporter reporter) {
    ErrorReporter old = getErrorReporter();
    this.reporter = reporter;
    firePropertyChange("errorReporter", old, getErrorReporter());
}
 
开发者ID:teddyted,项目名称:iSeleda,代码行数:13,代码来源:JXErrorPane.java


示例3: getErrorReporter

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
/**
 * Gets the {@link ErrorReporter} delegate in use.
 *
 * @return the ErrorReporter. May be null.
 */
public ErrorReporter getErrorReporter() {
    return reporter;
}
 
开发者ID:teddyted,项目名称:iSeleda,代码行数:9,代码来源:JXErrorPane.java


示例4: setErrorReporter

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
/**
 * Sets the {@link ErrorReporter} delegate to use. This delegate is called
 * automatically when the report action is fired.
 * 
 * @param reporter the ErrorReporter to use. If null, the report button will
 *        not be shown in the error dialog.
 */
public void setErrorReporter(ErrorReporter reporter) {
    ErrorReporter old = getErrorReporter();
    this.reporter = reporter;
    firePropertyChange("errorReporter", old, getErrorReporter());
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:13,代码来源:JXErrorPane.java


示例5: getErrorReporter

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
/**
 * Gets the {@link ErrorReporter} delegate in use.
 * 
 * @return the ErrorReporter. May be null.
 */
public ErrorReporter getErrorReporter() {
    return reporter;
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:9,代码来源:JXErrorPane.java


示例6: setErrorReporter

import org.jdesktop.swingx.error.ErrorReporter; //导入依赖的package包/类
/**
 * Add an {@link ErrorReporter} to the {@link JXErrorPane}.
 *
 * @param errorReporter error reporter to add.
 */
public void setErrorReporter(ErrorReporter errorReporter) {
    this.errorReporter = errorReporter;
}
 
开发者ID:shevek,项目名称:spring-rich-client,代码行数:9,代码来源:JXErrorDialogExceptionHandler.java



注:本文中的org.jdesktop.swingx.error.ErrorReporter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java HorizontalSplitPanel类代码示例发布时间:2022-05-23
下一篇:
Java FmtDate类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap