/* Callback.java -- Generic callback interface.
**
** Copyright (C) 2003 Eric Laroche.  All rights reserved.
**
** @author Eric Laroche <laroche@lrdev.com>
** @version 1.1 @(#)$Id: Callback.java,v 1.1 2003/02/16 12:40:19 laroche Exp $
**
** This program is free software;
** you can redistribute it and/or modify it.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**
*/

// note: no wildcard imports

/** Callback: Generic callback interface.
*
* @author Eric Laroche <laroche@lrdev.com>
* @version 1.1 @(#)$Id: Callback.java,v 1.1 2003/02/16 12:40:19 laroche Exp $
*/
public interface Callback
{
	/** Callback.
	*/
	public Object callback(Object object);
}

