Example #1
0
        public String getChildValue(String subelement)
        {
            Packet child = this.getFirstChild(subelement);

            if (child != null)
            {
                return(child.getValue());
            }
            else
            {
                return(null);
            }
        }