AVR Z-LINKŪ


ChatWindowEvent.java

Go to the documentation of this file.
00001 /* This file has been prepared for Doxygen automatic documentation generation.*/
00002 package gui;
00003 
00004 
00021 public class ChatWindowEvent {
00022         
00023         //Constants.
00024         public static final int CLEAR           = 0x03;
00025         public static final int ENTER           = 0x04;
00026         public static final int SEND            = 0x05;
00027         
00028         
00029         private int EventType;
00030         private String Data;
00031         
00041         public ChatWindowEvent( int Event, String data ){
00042                 
00043                 this.EventType = Event;
00044                 this.Data          = data;
00045         }
00046         
00054         public int getEventType( ){
00055                 return this.EventType;
00056         }
00057         
00058         
00066         public String getData( ){
00067                 return this.Data;
00068         }
00069 }
@DOC_TITLE@
Generated on Sat Dec 2 16:14:07 2006 for AVR414 User's Guide - ATAVRRZ502 - Accessory Kit by doxygen 1.4.7