当前位置: 首页>>代码示例>>Java>>正文


Java ErrorHandler类代码示例

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


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

示例1: setErrorHandler

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
@Override
protected void setErrorHandler() {
	nroSiniestro.setErrorHandler(new ErrorHandler() {

		private static final long serialVersionUID = 4325669635885170314L;

		@Override
		public void error(com.vaadin.server.ErrorEvent event) {
			log.debug("Ocurrio un error al levantar los parametros de busqueda.");
			
			nroSiniestro.setValue(null);
			tableSiniestros.removeAllItems();
			btnExportar.setEnabled(false);
		}
	});
}
 
开发者ID:damiancom,项目名称:garantia,代码行数:17,代码来源:ReporteSiniestro.java

示例2: init

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
/**
 * Adds a default transaction listener.
 */
@Override
public void init() {
	final LegacyApplication app = this;
	
	VaadinSession.getCurrent().setErrorHandler(new ErrorHandler() {
		private static final long serialVersionUID = 1L;

		@Override
		public void error(ErrorEvent event) {
			Utils.terminalError(event, app);
		}
	});

	if(!Db.isInitialized()) {
		logger.warn("No TransactionListener added: Database is not initialized. You can initialize a database configuring a new 'DefaultTransactionListener' in your web.xml and adding a 'configuration.properties' file to your classpath.");
	}
	
	VaadinSession.getCurrent().setAttribute("application", this);
}
 
开发者ID:alejandro-du,项目名称:enterprise-app,代码行数:23,代码来源:EnterpriseApplication.java

示例3: setErrorHandler

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
private void setErrorHandler() {
	// TODO Auto-generated method stub
	txtNombre.setErrorHandler(new ErrorHandler() {

		private static final long serialVersionUID = -7866511259549430845L;

		@Override
		public void error(com.vaadin.server.ErrorEvent event) {
			txtNombre.setValue(null);
			btnExportar.setEnabled(false);
		}
	});
}
 
开发者ID:damiancom,项目名称:garantia,代码行数:14,代码来源:AreasView.java

示例4: callErrorHandler

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
/**
 * Call the session's {@link ErrorHandler}, if it has one, with the given
 * exception wrapped in an {@link ErrorEvent}.
 */
private void callErrorHandler(VaadinSession session, Exception e) {
    try {
        ErrorHandler errorHandler = ErrorEvent.findErrorHandler(session);
        if (errorHandler != null) {
            errorHandler.error(new ErrorEvent(e));
        }
    } catch (Exception ex) {
        // Let's not allow error handling to cause trouble; log fails
        getLogger().log(Level.WARNING, "ErrorHandler call failed", ex);
    }
}
 
开发者ID:mcollovati,项目名称:vaadin-vertx-samples,代码行数:16,代码来源:VertxPushHandler.java

示例5: AbstractRunningEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
protected AbstractRunningEvent(ErrorHandler errorHandler) {
	super(errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:AbstractRunningEvent.java

示例6: FinishBranchEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public FinishBranchEvent(ErrorHandler errorHandler) {
	super(errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:FinishBranchEvent.java

示例7: StartTestEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public StartTestEvent(SimpleTest test, ErrorHandler errorHandler) {
	super(errorHandler);
	this.test = test;
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:5,代码来源:StartTestEvent.java

示例8: ErrorTestEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public ErrorTestEvent(ErrorHandler errorHandler) {
	super(errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:ErrorTestEvent.java

示例9: AfterFinishSlideEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public AfterFinishSlideEvent(Direction direction, ErrorHandler errorHandler) {
	super(errorHandler);
	this.direction = direction;
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:5,代码来源:AfterFinishSlideEvent.java

示例10: AfterPrepareTestEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public AfterPrepareTestEvent(SimpleTest test, ErrorHandler errorHandler) {
	super(errorHandler);
	this.test = test;
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:5,代码来源:AfterPrepareTestEvent.java

示例11: CloseTestEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public CloseTestEvent(ErrorHandler errorHandler) {
	super(errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:CloseTestEvent.java

示例12: AfterRenderContentEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public AfterRenderContentEvent(Component component, ErrorHandler errorHandler) {
	super(component, errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:AfterRenderContentEvent.java

示例13: AbstractUserEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
protected AbstractUserEvent(ErrorHandler errorHandler) {
	super(errorHandler);
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:4,代码来源:AbstractUserEvent.java

示例14: ActionEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public ActionEvent(Action action, ErrorHandler errorHandler) {
	super(errorHandler);
	this.action = action;
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:5,代码来源:ActionEvent.java

示例15: ContinueTestEvent

import com.vaadin.server.ErrorHandler; //导入依赖的package包/类
public ContinueTestEvent(SimpleTest test, ErrorHandler errorHandler) {
	super(errorHandler);
	this.test = test;
}
 
开发者ID:tilioteo,项目名称:hypothesis,代码行数:5,代码来源:ContinueTestEvent.java


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