| java.lang.Object org.netbeans.modules.visualweb.insync.FileObjectVisitor
FileObjectVisitor | abstract public class FileObjectVisitor (Code) | | A general purpose visitor class for use in traversing a directory structure.
author: eat |
Method Summary | |
public void | traverse(FileObject root) Travers the directory tree or any of its folders and visit the nodes within. | public void | visit(FileObject file) Visit a specific leaf node, gathering some info and logging where we are before calling the
actual protected worker method. | abstract protected void | visitImpl(FileObject file) Subclass hook method that gets called for every file object in a file object. |
traverse | public void traverse(FileObject root)(Code) | | Travers the directory tree or any of its folders and visit the nodes within.
|
visit | public void visit(FileObject file)(Code) | | Visit a specific leaf node, gathering some info and logging where we are before calling the
actual protected worker method.
|
visitImpl | abstract protected void visitImpl(FileObject file)(Code) | | Subclass hook method that gets called for every file object in a file object.
|
|
|