001         package com.croftsoft.apps.chat.event;
002    
003         /*********************************************************************
004         * Indicates nothing is happening on server but pull request was OK.
005         *
006         * @version
007         *   2003-06-18
008         * @since
009         *   2003-06-06
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public final class  NullEvent
015           extends AbstractEvent
016         //////////////////////////////////////////////////////////////////////
017         //////////////////////////////////////////////////////////////////////
018         {
019    
020         private static final long  serialVersionUID = 0L;
021    
022         //////////////////////////////////////////////////////////////////////
023         //////////////////////////////////////////////////////////////////////
024    
025         public  NullEvent ( long  eventIndex )
026         //////////////////////////////////////////////////////////////////////
027         {
028           setEventIndex ( eventIndex );
029         }
030    
031         //////////////////////////////////////////////////////////////////////
032         //////////////////////////////////////////////////////////////////////
033         }