| org.geotools.catalog.ResolveAdapterFactory
ResolveAdapterFactory | public interface ResolveAdapterFactory (Code) | | Adapts a resolve handle into another type of object.
author: Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org |
Method Summary | |
Object | adapt(Resolve resolve, Class adapter, ProgressListener monitor) Performs an adaptation to a particular adapter.
Parameters: resolve - The handle being adapted. Parameters: adapter - The adapting class. Parameters: monitor - Progress monitor for blocking class. | boolean | canAdapt(Resolve resolve, Class adapter) Determines if a perticular adaptation is supported.
Parameters: resolve - The handle being adapted. Parameters: adapter - The adapting class. |
adapt | Object adapt(Resolve resolve, Class adapter, ProgressListener monitor) throws IOException(Code) | | Performs an adaptation to a particular adapter.
Parameters: resolve - The handle being adapted. Parameters: adapter - The adapting class. Parameters: monitor - Progress monitor for blocking class. The adapter, or null if adapation not possible. throws: IOException - Any I/O errors that occur. |
canAdapt | boolean canAdapt(Resolve resolve, Class adapter)(Code) | | Determines if a perticular adaptation is supported.
Parameters: resolve - The handle being adapted. Parameters: adapter - The adapting class. True if supported, otherwise false. |
|
|