Method methods[] = c.getMethods();
List<String> additionalLeafPaths = new ArrayList<String>();
for (Method m : methods) {
// --------- Register WebActionHandler --------- //
WebActionHandler webActionHandlerAnnotation = m.getAnnotation(WebActionHandler.class);
// if it is an action method, then, add the WebAction Object and
// Method to the action Dic
if (webActionHandlerAnnotation != null) {
registerWebAction(targetObject, m, webActionHandlerAnnotation);
}