}
public void visit( Stroke stroke ) {
Graphic graphicFill = stroke.getGraphicFill();
if (graphicFill != null) {
graphicFill.accept(this);
}
Graphic graphicStroke = stroke.getGraphicStroke();
if (graphicStroke != null) {
graphicStroke.accept(this);
}