| AVR Z-LINKŪ | |||||
00001 /* This file has been prepared for Doxygen automatic documentation generation.*/ 00002 package serialInterface; 00003 00004 00022 public class SerialStreamEvent{ 00023 00024 private static final long serialVersionUID = 1L; 00025 private String receivedOnInpuStream; 00026 00035 public SerialStreamEvent( String response ) { 00036 00037 this.receivedOnInpuStream = response; 00038 } 00039 00048 public String getResponse( ){ 00049 return this.receivedOnInpuStream; 00050 } 00051 }
Generated on Sat Dec 2 16:14:07 2006 for AVR414 User's Guide - ATAVRRZ502 - Accessory Kit by 1.4.7
|