public Object getAdapter(Object adaptableObject, Class adapterType) {
/* IFeed supports Favicons */
if (IFaviconSupport.class.equals(adapterType) && adaptableObject instanceof IFeed) {
final IFeed feed = (IFeed) adaptableObject;
return new IFaviconSupport() {
public byte[] getFavicon() {
Object property = feed.getProperty(KEY_FAVICON);
if (property != null && property instanceof byte[])
return (byte[]) property;