Example #1
0
 public ThreeGPP_3G_Cell_ID(PLMN_ID plmnID, CELL_ID cellID) {
   plmn_ID = new PLMN_ID(plmnID);
   cell_ID = new CELL_ID(cellID);
   Serialization srlz = new Serialization();
   threegpp_3g_cell_id =
       new byte[srlz.sequence(plmnID.get_PLMN_ID(), cellID.get_CELL_ID()).length];
   threegpp_3g_cell_id = srlz.sequence(plmnID.get_PLMN_ID(), cellID.get_CELL_ID());
 }
Example #2
0
    public ThreeGPP_2G_Cell_ID(PLMN_ID plmnID, LAC lac, CI ci) {
      Serialization srlz = new Serialization();
      this.plmnID = plmnID;
      this.lac = lac;
      this.ci = ci;

      threegpp_2g_cell_id =
          new byte[srlz.sequence(plmnID.get_PLMN_ID(), lac.get_LAC(), ci.get_CI()).length];
      threegpp_2g_cell_id = srlz.sequence(plmnID.get_PLMN_ID(), lac.get_LAC(), ci.get_CI());
    }
Example #3
0
 public PLMN_ID(PLMN_ID plmnID) {
   value = plmnID.get_PLMN_ID_Value();
   this.plmnID = new byte[plmnID.get_PLMN_ID().length];
   this.plmnID = plmnID.get_PLMN_ID();
 }