コード例 #1
0
 /** {@inheritDoc} */
 public List getFlatResources(String id) {
   List l = storage.getFlatResources(id);
   if (l != null) {
     return l;
   }
   ContentEntity ce = getVirtualChild(id, getRealParent(id), true);
   if (ce != null) {
     ContentHostingHandler chh = ce.getContentHandler();
     if (chh != null) {
       return chh.getFlatResources(ce);
     }
   }
   return null;
 }