Package org.apache.uima.resource
Interface SharedResourceObject
-
public interface SharedResourceObject
TheSharedResourceObject
interface must be implemented by all classes that provide access to resource data. Object that implement this interface may be made accessible to Annotators via theResourceManager
.This interface's
load(DataResource)
method is called by the ResourceManager after theSharedResourceObject
has been instantiated. ADataResource
is passes as a parameter to this method. The implementation of theload
method should read the data from theDataResource
and use that data to initialize this object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
load(DataResource aData)
Called by theResourceManager
after this object has been instantiated.
-
-
-
Method Detail
-
load
void load(DataResource aData) throws ResourceInitializationException
Called by theResourceManager
after this object has been instantiated. The implementation of this method should read the data from the specifiedDataResource
and use that data to initialize this object.- Parameters:
aData
- aDataResource
that provides access to the data for this resource object.- Throws:
ResourceInitializationException
- if a failure occurs during loading.
-
-