001package com.hfg.xml.msofficexml.docx.drawingml.text;
002
003
004import com.hfg.xml.msofficexml.docx.Docx;
005import com.hfg.xml.msofficexml.docx.drawingml.DmlXML;
006import com.hfg.xml.msofficexml.docx.wordprocessingml.WmlXMLTag;
007
008public class DmlTextBody extends WmlXMLTag
009{
010   //###########################################################################
011   // CONSTRUCTORS
012   //###########################################################################
013
014   //---------------------------------------------------------------------------
015   public DmlTextBody(Docx inDocx)
016   {
017      super(DmlXML.TEXT_BODY, inDocx);
018   }
019
020   //###########################################################################
021   // PUBLIC METHODS
022   //###########################################################################
023
024   //---------------------------------------------------------------------------
025   public DmlParagraph addParagraph()
026   {
027      DmlParagraph p = new DmlParagraph();
028      addSubtag(p);
029
030      return p;
031   }
032
033}