Interface ReferencedImageFactory
-
- All Known Implementing Classes:
AbstractGraphicImageFactory
,CommonsImageFactory
,ECWImageFactory
,GeoImageFactory
,GeoTIFFImageFactory
,IOGraphicImageFactory
,JAIGraphicImageFactory
,JPEG2000ImageFactory
,MrSIDImageFactory
,OpenJpegImageFactory
public interface ReferencedImageFactory
A factory forReferencedImage
s.
-
-
Field Summary
Fields Modifier and Type Field Description static String
REGISTRY_CLASSIFICATION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReferencedImage
createImage(String uri_string)
String
getDescription()
String[]
getExtensions()
String
getTypeName()
boolean
isAvailable(WorkbenchContext wbContext)
boolean
isEditableImage(String location)
-
-
-
Field Detail
-
REGISTRY_CLASSIFICATION
static final String REGISTRY_CLASSIFICATION
-
-
Method Detail
-
getTypeName
String getTypeName()
-
createImage
ReferencedImage createImage(String uri_string) throws Exception
- Throws:
Exception
-
getDescription
String getDescription()
-
getExtensions
String[] getExtensions()
-
isEditableImage
boolean isEditableImage(String location)
-
isAvailable
boolean isAvailable(WorkbenchContext wbContext)
- Parameters:
wbContext
- can be null, depending on the implementation (e.g. not null for MrSid driver)- Returns:
- true if it is available
-
-