public static List<GotoRelatedItem> getGotoRelatedItems(Method method) {
List<GotoRelatedItem> gotoRelatedItems = new ArrayList<GotoRelatedItem>();
ControllerActionGotoRelatedCollectorParameter parameter = new ControllerActionGotoRelatedCollectorParameter(method, gotoRelatedItems);
for(ControllerActionGotoRelatedCollector extension : EP_NAME.getExtensions()) {
extension.collectGotoRelatedItems(parameter);
}
return gotoRelatedItems;