Examples of ConcatInformationElement


Examples of org.ajwcc.pduUtils.gsm3040.ie.ConcatInformationElement

  }

  public ConcatInformationElement getConcatInfo()
  {
    checkForUDHI(UDH_CHECK_MODE_IGNORE_IF_NONE);
    ConcatInformationElement concat = (ConcatInformationElement) getInformationElement(ConcatInformationElement.CONCAT_8BIT_REF);
    if (concat == null)
    {
      concat = (ConcatInformationElement) getInformationElement(ConcatInformationElement.CONCAT_16BIT_REF);
    }
    return concat;
View Full Code Here

Examples of org.ajwcc.pduUtils.gsm3040.ie.ConcatInformationElement

    return concat;
  }

  public int getMpRefNo()
  {
    ConcatInformationElement concat = getConcatInfo();
    if (concat != null) return concat.getMpRefNo();
    return 0;
  }
View Full Code Here

Examples of org.ajwcc.pduUtils.gsm3040.ie.ConcatInformationElement

    return 0;
  }

  public int getMpMaxNo()
  {
    ConcatInformationElement concat = getConcatInfo();
    if (concat != null) return concat.getMpMaxNo();
    return 1;
  }
View Full Code Here

Examples of org.ajwcc.pduUtils.gsm3040.ie.ConcatInformationElement

    return 1;
  }

  public int getMpSeqNo()
  {
    ConcatInformationElement concat = getConcatInfo();
    if (concat != null) return concat.getMpSeqNo();
    return 0;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.