ContentObject content
)
{
if(content instanceof SetLineWidth)
{
SetLineWidth setLineWidth = (SetLineWidth)content;
// Force lines under 10 user-space units to be set to 10!
if(setLineWidth.getValue() < 10)
{setLineWidth.setValue(10);}
}
else if(content instanceof CompositeObject)
{
List<ContentObject> objects = ((CompositeObject)content).getObjects();
for(ContentObject obj : objects)