001 package com.croftsoft.apps.chat.event; 002 003 import java.io.Serializable; 004 005 /********************************************************************* 006 * An interface for events from the Server. 007 * 008 * @version 009 * 2003-06-18 010 * @since 011 * 2003-06-17 012 * @author 013 * <a href="https://www.croftsoft.com/">David Wallace Croft</a> 014 *********************************************************************/ 015 016 public interface Event 017 extends Serializable 018 ////////////////////////////////////////////////////////////////////// 019 ////////////////////////////////////////////////////////////////////// 020 { 021 022 public long getEventIndex ( ); 023 024 public void setEventIndex ( long eventIndex ); 025 026 ////////////////////////////////////////////////////////////////////// 027 ////////////////////////////////////////////////////////////////////// 028 }