Yes, you can marshall to create ...
If you create a pptx containing SmartArt in powerpoint, then run the result through the PartsList sample, you'll see which part classes pptx4j uses for the SmartArt parts.
For example, one is
Using java Syntax Highlighting
public final class DiagramLayoutPart
extends JaxbDmlPart
<CTDiagramDefinition
>
Parsed in 0.014 seconds, using
GeSHi 1.0.8.4
CTDiagramDefinition is in package package org.docx4j.dml.diagram, as are the other SmartArt related content objects.
The Diagram*Parts are in org.docx4j.openpackaging.parts.DrawingML
All of this stuff is in docx4j's src/main/java dir tree.
hope this helps .. Jason