Constructs a MessagePdu with the list of message PDUs.parampduList the list of message PDUs if (pduList == null || pduList.contains(null)) { throw new IllegalArgumentException("pduList must not be null or contain nulls"); } mPduList = pduList;
if (pduList == null || pduList.contains(null)) { throw new IllegalArgumentException("pduList must not be null or contain nulls"); } mPduList = pduList;
return 0;
Returns the contents of a possibly multi-part SMS.returnthe list of PDUs return mPduList;
return mPduList;
if (mPduList == null) { dest.writeInt(NULL_LENGTH); } else { dest.writeInt(mPduList.size()); for (byte[] messagePdu : mPduList) { dest.writeByteArray(messagePdu); } }