public interface SharedResourceObject
SharedResourceObject
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 the ResourceManager
.
This interface's load(DataResource)
method is called by the ResourceManager after the
SharedResourceObject
has been instantiated. A DataResource
is passes as a
parameter to this method. The implementation of the load
method should read the
data from the DataResource
and use that data to initialize this object.
Modifier and Type | Method and Description |
---|---|
void |
load(DataResource aData)
Called by the
ResourceManager after this object has been
instantiated. |
void load(DataResource aData) throws ResourceInitializationException
ResourceManager
after this object has been
instantiated. The implementation of this method should read the data from the specified
DataResource
and use that data to initialize this object.aData
- a DataResource
that provides access to the data for this resource
object.ResourceInitializationException
- if a failure occurs during loading.Copyright © 2006–2017 The Apache Software Foundation. All rights reserved.