Exemplo n.º 1
0
        private CT_ExtensionList extLstField = null;                    // optional field

        public static CT_Comments Parse(XElement node, XmlNamespaceManager namespaceManager)
        {
            if (node == null)
            {
                return(null);
            }
            CT_Comments ctObj = new CT_Comments();

            foreach (XElement childNode in node.ChildElements())
            {
                if (childNode.Name.LocalName == "authors")
                {
                    ctObj.authors = CT_Authors.Parse(childNode, namespaceManager);
                }
                else if (childNode.Name.LocalName == "commentList")
                {
                    ctObj.commentList = CT_CommentList.Parse(childNode, namespaceManager);
                }
                else if (childNode.Name.LocalName == "extLst")
                {
                    ctObj.extLst = CT_ExtensionList.Parse(childNode, namespaceManager);
                }
            }
            return(ctObj);
        }
Exemplo n.º 2
0
        public static CT_CommentList Parse(XElement node, XmlNamespaceManager namespaceManager)
        {
            if (node == null)
            {
                return(null);
            }
            CT_CommentList ctObj = new CT_CommentList();

            ctObj.comment = new List <CT_Comment>();
            foreach (XElement childNode in node.ChildElements())
            {
                if (childNode.Name.LocalName == "comment")
                {
                    ctObj.comment.Add(CT_Comment.Parse(childNode, namespaceManager));
                }
            }
            return(ctObj);
        }
Exemplo n.º 3
0
 public void AddNewCommentList()
 {
     this.commentListField = new CT_CommentList();
 }