com.hfg.xml.msofficexml.docx.drawingml.text.DmlTextBody 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.drawingml.text;
import com.hfg.xml.msofficexml.docx.Docx;
import com.hfg.xml.msofficexml.docx.drawingml.DmlXML;
import com.hfg.xml.msofficexml.docx.wordprocessingml.WmlXMLTag;
public class DmlTextBody extends WmlXMLTag
{
//###########################################################################
// CONSTRUCTORS
//###########################################################################
//---------------------------------------------------------------------------
public DmlTextBody(Docx inDocx)
{
super(DmlXML.TEXT_BODY, inDocx);
}
//###########################################################################
// PUBLIC METHODS
//###########################################################################
//---------------------------------------------------------------------------
public DmlParagraph addParagraph()
{
DmlParagraph p = new DmlParagraph();
addSubtag(p);
return p;
}
}