Uses of Class
nl.uva.vlet.vfs.VFSNode

Packages that use VFSNode
nl.uva.vlet.vfs   
 

Uses of VFSNode in nl.uva.vlet.vfs
 

Subclasses of VFSNode in nl.uva.vlet.vfs
 class VDir
          Super class of the VFS Directory implementation.
 class VFile
          The Virtual File Interface.
 

Methods in nl.uva.vlet.vfs that return VFSNode
 VFSNode VDir.addNode(VFSNode node, java.lang.String optNewName, boolean isMove)
           
 VFSNode VDir.addNode(VNode node, boolean isMove)
          Add (VFS)Node to this directory location.
 VFSNode VDir.addNode(VNode node, java.lang.String optNewName, boolean isMove)
           
 VFSNode[] VDir.addNodes(VFSNode[] nodes, boolean isMove)
           
abstract  VFSNode VFSNode.copyTo(VDir dest)
           
abstract  VFSNode VFSNode.copyTo(VDir dest, java.lang.String newName)
           
 VFSNode VDir.createChild(java.lang.String type, java.lang.String name, boolean force)
          VDir implements createChild by calling createFile and createDir, depending on the type.
 VFSNode VDir.getChild(java.lang.String name)
          Get VFSNode
 VFSNode[] VDir.getChilds()
          default implementation calls the VDir method list()
 VFSNode VFSNode.getPath(java.lang.String path)
          Fetch any VFSNode (VFile or VDir) with the specified absolute path
 VFSNode VFSTransfer.getResultNode()
           
 VFSNode VFSClient.getVFSNode(VRL location)
          Return VFile specified by the location
abstract  VFSNode[] VDir.list()
          This method is Similar to getChilds, but returns an array of VFSNodes.
The method getChilds returns an array of type VNode.
 VFSNode[] VDir.listSorted(boolean typeFirst, boolean ignoreCase)
          List the chidren and sorts them.
abstract  VFSNode VFSNode.moveTo(VDir dest)
           
abstract  VFSNode VFSNode.moveTo(VDir dest, java.lang.String newName)
           
 VFSNode VFSClient.openLocation(java.lang.String location)
          Return VFSNode pointing to the specified location
 VFSNode VFSClient.openLocation(VRL location)
          Return VFSNode pointing to the specified location
static VFSNode[] VFSNode.returnAsArray(java.util.Vector<VFSNode> nodes)
           
 VFSNode VFSNode.startCopyMoveTo(VDir dest, java.lang.String optNewName, boolean isMove)
           
protected  VFSNode VFSNode.startCopyMoveTo(VFSTransfer transfer, VDir dest, java.lang.String optNewName, boolean isMove)
          Initiate a Copy or Move with the specified Transfer Information object.
 

Methods in nl.uva.vlet.vfs with parameters of type VFSNode
 VFSNode VDir.addNode(VFSNode node, java.lang.String optNewName, boolean isMove)
           
 VFSNode[] VDir.addNodes(VFSNode[] nodes, boolean isMove)
           
 void VFSTransfer.setResultNode(VFSNode node)
           
 

Method parameters in nl.uva.vlet.vfs with type arguments of type VFSNode
static VFSNode[] VFSNode.returnAsArray(java.util.Vector<VFSNode> nodes)