/** * Get the hash map of dynamic components. * * @return the hash map of dynamic components. */ public HashMap<String, UIComponent> getDynamicComponents() { return ((modListener != null) ? modListener.getDynamicComponents() : null); }
/** Get the dynamic list (of adds and removes). */ public List<ComponentStruct> getDynamicActions() { return ((modListener != null) ? modListener.getDynamicActions() : null); }