Beispiel #1
0
 public void addChild(ServerFile child) {
   if (!isDirectory) {
     throw new UnsupportedOperationException("cannot add children if not a directory");
   }
   children.add(child);
   child.setParent(this);
 }