if (monitor == null)
monitor = new NullProgressMonitor();
monitor.beginTask("world image", 2);
try {
monitor.worked(1);
return new AbstractRasterServiceInfo(this,
"WorldImage", "world image", ".gif", ".jpg", ".jpeg", //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$ //$NON-NLS-5$
".tif", ".tiff", ".png"); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$);
} finally {
monitor.done();
}