https://hal.archives-ouvertes.fr/hal-02177293
Raw File
Tip revision: a5c3a632ff52caf942ac0457ce1ec733926a867b authored by Software Heritage on 01 January 2004, 00:00:00 UTC
hal: Deposit 315 in collection hal
Tip revision: a5c3a63
InformationAdapter.java
/*
 * Créé le 23 aoűt 2004
 *
 */
package information;

/**
 * permet de réaliser des InformationListeners sans forcément implémenter toutes
 * les méthodes.
 * En effet, certaines classes n'ont pas besoin d'écouter certains types
 * d'InformationEvents.
 * 
 * @author	Vincent Labatut
 * @version	1
 * @see		information.InterfaceInformation
 * @see		information.InformationListener
  */
public abstract class InformationAdapter implements InformationListener
{	/*
	/*
	 */
	public void informationSuppr(InformationEvent e) throws InformationIncompleteException
	{
	}
	/*
	/*
	 */
	public void informationEltModif(InformationEvent e) throws InformationIncompleteException
	{
	}
	/*
	/*
	 */
	public void informationRaffr(InformationEvent e) throws InformationIncompleteException
	{
	}
	/*
	/*
	 */
	public void informationRempl(InformationEvent e) throws InformationIncompleteException
	{
	}
	/*
	/*
	 */
	public void informationCache(InformationEvent e) throws InformationIncompleteException
	{
	}
	/*
	/*
	 */
	public void informationChangementModele(InformationEvent e) throws InformationIncompleteException
	{
	}
}
back to top