* Get the source property on the wrapped source. If the wrapped source implements
* InspectableSource the implementation will first try to get it from there.
* If it doesn't exist on the delegate it will try to find it using the source descriptor.
*/
public SourceProperty getSourceProperty(String uri, String name) throws SourceException {
SourceProperty property = null;
if (m_delegate instanceof InspectableSource) {
property = ((InspectableSource) m_delegate).getSourceProperty(uri,name);
}
if (property == null && m_descriptor != null) {
property = m_descriptor.getSourceProperty(m_delegate,uri,name);