00001
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 package sensix.discovery;
00036
00037
00038 public class Report extends Announce
00039 {
00040 public byte cType;
00041
00042 public Report(int id, byte lvl, byte t) {
00043 super(id, lvl);
00044 cType = t;
00045 }
00046 }