/*
* Read through each of the factories, trying with each one
* to create a Graphic instance.
*/
for (int i = 0; i < factoryList.size(); i++) {
final GraphicFactory factory = factoryList.get(i);
try {
graphic = factory.makeGraphic(absoluteURL, imgIS);
} catch (final IOException e) {
throw new GraphicException("Error parsing Graphic: "
+ e.getMessage());
}
if (graphic != null) {