示例#1
0
文件: Address.java 项目: ATNoG/EMICOM
 public LAC(Octet os) {
   this.os = os;
   if (os.getValue().length == 2) {
     lac = new byte[os.getValue().length];
     lac = os.getValue();
   }
 }
示例#2
0
文件: Address.java 项目: ATNoG/EMICOM
 public CI(Octet os) {
   this.os = os;
   if (os.getValue().length == 2) {
     ci = new byte[os.getValue().length];
     ci = os.getValue();
   }
 }
示例#3
0
文件: Address.java 项目: ATNoG/EMICOM
 public PLMN_ID(Octet os) {
   value = new Octet(os);
   if (os.getValue().length == 3) {
     plmnID = new byte[os.getValue().length];
     plmnID = os.getValue();
   }
 }