All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.xml.msofficexml.docx.wordprocessingml.WmlComments Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.xml.msofficexml.docx.wordprocessingml;


import com.hfg.xml.XMLTag;

public class WmlComments extends XMLTag
{
   private int mIdSrc = 1;

   //---------------------------------------------------------------------------
   public WmlComments()
   {
      super(WmlXML.COMMENTS);
   }

   //---------------------------------------------------------------------------
   public int addComment(WmlParagraph inValue)
   {
      XMLTag commentTag = new XMLTag(WmlXML.COMMENT);
      int id = mIdSrc++;
      commentTag.setAttribute(WmlXML.ID_ATT, id);
      addSubtag(commentTag);

      commentTag.addSubtag(inValue);

      return id;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy