| AVR Z-LINKŪ | |||||
00001 /* This file has been prepared for Doxygen automatic documentation generation.*/ 00002 package radioInterface; 00003 00004 00021 public class NewDataIndication { 00022 00023 private int dataLength; 00024 private String data; 00025 00034 public NewDataIndication( String data, int length ){ 00035 00036 this.data = data; 00037 this.dataLength = length; 00038 } 00039 00048 public String getNewData( ){ 00049 return this.data; 00050 } 00051 00060 public int getDataLength( ){ 00061 return this.dataLength; 00062 } 00063 }
Generated on Sat Dec 2 16:14:07 2006 for AVR414 User's Guide - ATAVRRZ502 - Accessory Kit by 1.4.7
|