Example #1
0
 /**
  * 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);
 }
Example #2
0
 /** Get the dynamic list (of adds and removes). */
 public List<ComponentStruct> getDynamicActions() {
   return ((modListener != null) ? modListener.getDynamicActions() : null);
 }