Class feedClass = annotatedObject.getClass();
String title = null;
String description = null;
String link = null;
List feedItems = new ArrayList();
Feed feedAnnotation = (Feed) feedClass.getAnnotation(Feed.class);
if (feedAnnotation != null) {
for (Method method : feedClass.getMethods()) {
if (method.getAnnotation(FeedTitle.class) != null) {
title = (String) method.invoke(annotatedObject);