本文整理汇总了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;未经允许,请勿转载。 |
请发表评论