| AVR Z-LINKŪ | |||||
00001 /* This file has been prepared for Doxygen automatic documentation generation.*/ 00002 package gui; 00003 00004 00022 public class MainFrameEvent{ 00023 00024 // Constants. 00025 public static final int CONNECT = 0x00; 00026 public static final int CLEAR_DEBUG = 0x01; 00027 public static final int DISCONNECT = 0x02; 00028 00029 private int EventType; 00030 00037 public MainFrameEvent( int EventType ){ 00038 00039 this.EventType = EventType; 00040 } 00041 00047 public int getEventType( ){ 00048 return this.EventType; 00049 } 00050 00051 }
Generated on Sat Dec 2 16:14:07 2006 for AVR414 User's Guide - ATAVRRZ502 - Accessory Kit by 1.4.7
|