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