// Drawing the ellipse frame...
composer.beginLocalState();
composer.setLineWidth(.25f);
composer.setLineDash(3,5,5);
composer.drawRectangle(arcFrame);
composer.stroke();
composer.end();
// Drawing the ellipse...
composer.setFillColor(new DeviceRGBColor(0,1,0));
composer.drawEllipse(arcFrame);