Exemplo n.º 1
0
 public LAC(Octet os) {
   this.os = os;
   if (os.getValue().length == 2) {
     lac = new byte[os.getValue().length];
     lac = os.getValue();
   }
 }
Exemplo n.º 2
0
 public CI(Octet os) {
   this.os = os;
   if (os.getValue().length == 2) {
     ci = new byte[os.getValue().length];
     ci = os.getValue();
   }
 }
Exemplo n.º 3
0
 public PLMN_ID(Octet os) {
   value = new Octet(os);
   if (os.getValue().length == 3) {
     plmnID = new byte[os.getValue().length];
     plmnID = os.getValue();
   }
 }