if (pPr.getShd() != null)
properties.add(new PShading(pPr.getShd()));
// if (pPr.getSnapToGrid() != null)
// dest.setSnapToGrid(pPr.getSnapToGrid());
if (pPr.getSpacing() != null) {
Spacing spacing = pPr.getSpacing();
if (spacing.getBefore()!=null) {
properties.add(new SpaceBefore(spacing.getBefore()));
}
if (spacing.getAfter()!=null) {
properties.add(new SpaceAfter(spacing.getAfter()));
}
if (spacing.getLine()!=null) {
properties.add(new LineSpacing(spacing.getLine()));
}
// Others not implemented:
// "beforeLines"
// beforeAutospacing"
// afterLines"