Exemplo n.º 1
0
 private void buildChildren() {
   if (m_file != null) {
     buildChildren(m_file);
     // } else if (m_url != null) {
     //    buildChildren(m_url);
   } else if (m_composite != null) {
     if (m_composite.isURL()) {
       URL url = m_composite.toURL();
       buildChildren(url);
     } else {
       buildChildren(m_composite);
     }
   } // end if
 } // end buildChildren()
Exemplo n.º 2
0
  private Map<String, FsEntry> getChildren() {
    if (m_children == null) {
      m_children = new HashMap<String, FsEntry>();

      String name = getQualifiedName();
      if ("com/".equals(name)) {
        int i = 0;
        i++;
      }

      buildChildren();
    }

    return m_children;
  }