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 Require extends Report
00039 {
00040 public int targetIdent;
00041
00042 public Require(int id, byte lvl, byte t, int targ) {
00043 super(id, lvl, t);
00044 targetIdent = targ;
00045 }
00046 }