docx generation: putting elements inside ffData (CTFFData)

I'm using docx4j library to generate a docx file. I need to put couple of other elements inside the \[code\]w:ffData\[/code\] tag, eventually creating a structure like this:\[code\]<w:ffData> <w:name w:val="Some value"/> <w:enabled/> <w:calcOnExit w:val="0"/> <w:checkBox> <w:sizeAuto/> <w:default w:val="0"/> <w:checked/> </w:checkBox></w:ffData>\[/code\]I can successfully create the \[code\]w:ffData\[/code\] element using \[code\]CTFFData ffData = http://stackoverflow.com/questions/14481414/factory.createCTFFData();\[/code\]Now, being a total docx4j newbie I'd expect a \[code\]getContent\[/code\] method as is for example available for the \[code\]R\[/code\] class (produces \[code\]w:r\[/code\] elements).Having no such a method at my disposal, I'm looking for other approaches to this problem. Thank you.
 
Back
Top