コード例 #1
0
ファイル: StateContext.java プロジェクト: ivartanian/mojarra
 /**
  * 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);
 }
コード例 #2
0
ファイル: StateContext.java プロジェクト: ivartanian/mojarra
 /** Get the dynamic list (of adds and removes). */
 public List<ComponentStruct> getDynamicActions() {
   return ((modListener != null) ? modListener.getDynamicActions() : null);
 }