001         package com.croftsoft.core.lang;
002    
003         /*********************************************************************
004         * Generic listener.
005         *
006         * @version
007         *   $Id: Listener.java,v 1.1 2006/01/07 02:20:25 croft Exp $
008         * @since
009         *   2006-01-06
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public interface  Listener<T>
015         //////////////////////////////////////////////////////////////////////
016         //////////////////////////////////////////////////////////////////////
017         {
018           
019         public void  listen ( T  t );
020    
021         //////////////////////////////////////////////////////////////////////
022         //////////////////////////////////////////////////////////////////////
023         }