if (name.equals(CaoDriver.TREE_DEFAULT)) {
return new FsElement(this,path);
}
if (name.equals(CaoDriver.LIST_DEFAULT)) {
if (!attributes[0].startsWith(path))
throw new ObjectNotFoundException(attributes[0]);
return new FsElement(this, attributes[0]);
}
return null;
}