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