com.hfg.xml.msofficexml.docx.wordprocessingml.WmlComments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
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;
}
}