All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jwic.controls.LazyInitializationHandler Maven / Gradle / Ivy

There is a newer version: 5.3.43
Show newest version
/*
 * de.jwic.controls.LazyInitializationListener 
 */
package de.jwic.controls;

import java.io.Serializable;

import de.jwic.base.IControlContainer;

/**
 * Enables lazy control initialization in containers.
 * 
 * @author lippisch
 */
public interface LazyInitializationHandler extends Serializable {

	/**
	 * Initialize the controls
	 * @param container
	 */
	public void initialize(IControlContainer container);
	
	/**
	 * 
	 */
	public void success();
	
	/**
	 * @param t
	 */
	public void failure(Throwable t);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy