예제 #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();
   }
 }