Uses of Interface
dk.apaq.vfs.Node

Packages that use Node
dk.apaq.vfs   
dk.apaq.vfs.filters   
dk.apaq.vfs.impl.cifs   
dk.apaq.vfs.impl.layered   
dk.apaq.vfs.impl.nativefs   
dk.apaq.vfs.impl.ram   
dk.apaq.vfs.impl.sftp   
dk.apaq.vfs.impl.subfs   
 

Uses of Node in dk.apaq.vfs
 

Subinterfaces of Node in dk.apaq.vfs
 interface Directory
           
 interface File
           
 

Methods in dk.apaq.vfs that return Node
 Node Directory.getChild(String name)
          Retrieves a child with the given name.
 Node FileSystem.getNode(String path)
           
 

Methods in dk.apaq.vfs that return types with arguments of type Node
 List<Node> Directory.getChildren()
          Retrieves a list of all children in the directory.
 List<Node> Directory.getChildren(NodeFilter filter)
          Retrieves a list of children in the directory.
 

Methods in dk.apaq.vfs with parameters of type Node
 boolean NodeFilter.accept(Node node)
          Called to check if the filter accepts the node.
 int Node.compareTo(Node node)
          Compare this node to another node by comparing their names.
 boolean Node.equals(Node node)
           
 

Uses of Node in dk.apaq.vfs.filters
 

Methods in dk.apaq.vfs.filters with parameters of type Node
 boolean OrFilter.accept(Node node)
           
 boolean NotHiddenFilter.accept(Node node)
           
 boolean HiddenFilter.accept(Node node)
           
 boolean FileFilter.accept(Node node)
           
 boolean DirectoryFilter.accept(Node node)
           
 boolean AndFilter.accept(Node node)
           
 

Uses of Node in dk.apaq.vfs.impl.cifs
 

Classes in dk.apaq.vfs.impl.cifs that implement Node
 class CifsDirectory
           
 class CifsFile
           
 class CifsNode
           
 

Methods in dk.apaq.vfs.impl.cifs that return Node
 Node CifsDirectory.getChild(String name)
           
 Node CifsFileSystem.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.cifs that return types with arguments of type Node
 List<Node> CifsDirectory.getChildren()
           
 List<Node> CifsDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.cifs with parameters of type Node
 int CifsNode.compareTo(Node node)
           
 boolean CifsNode.equals(Node node)
           
 

Uses of Node in dk.apaq.vfs.impl.layered
 

Classes in dk.apaq.vfs.impl.layered that implement Node
 class LayeredDirectory
           
 class LayeredFile
           
 class LayeredNode
           
 

Fields in dk.apaq.vfs.impl.layered declared as Node
protected  Node LayeredNode.wrappedNode
           
 

Methods in dk.apaq.vfs.impl.layered that return Node
 Node LayeredDirectory.getChild(String name)
           
 Node LayeredFileSystem.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.layered that return types with arguments of type Node
 List<Node> LayeredDirectory.getChildren()
           
 List<Node> LayeredDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.layered with parameters of type Node
 int LayeredNode.compareTo(Node node)
           
 boolean LayeredNode.equals(Node node)
           
 

Constructors in dk.apaq.vfs.impl.layered with parameters of type Node
LayeredNode(LayeredFileSystem fileSystem, LayeredDirectory parent, Node wrappedNode)
           
 

Uses of Node in dk.apaq.vfs.impl.nativefs
 

Classes in dk.apaq.vfs.impl.nativefs that implement Node
 class NativeDirectory
           
 class NativeFile
           
 class NativeNode
           
 

Methods in dk.apaq.vfs.impl.nativefs that return Node
 Node NativeDirectory.getChild(String name)
           
 Node NativeFileSystem.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.nativefs that return types with arguments of type Node
 List<Node> NativeDirectory.getChildren()
           
 List<Node> NativeDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.nativefs with parameters of type Node
 int NativeNode.compareTo(Node node)
           
 boolean NativeNode.equals(Node node)
           
 

Uses of Node in dk.apaq.vfs.impl.ram
 

Classes in dk.apaq.vfs.impl.ram that implement Node
 class RamDirectory
           
 class RamFile
           
 class RamNode
           
 

Methods in dk.apaq.vfs.impl.ram that return Node
 Node RamDirectory.getChild(String name)
           
 Node RamFilesystem.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.ram that return types with arguments of type Node
 List<Node> RamDirectory.getChildren()
           
 List<Node> RamDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.ram with parameters of type Node
 int RamNode.compareTo(Node node)
           
 boolean RamNode.equals(Node node)
           
 

Uses of Node in dk.apaq.vfs.impl.sftp
 

Classes in dk.apaq.vfs.impl.sftp that implement Node
 class SftpDirectory
           
 class SftpFile
           
 class SftpNode
           
 

Methods in dk.apaq.vfs.impl.sftp that return Node
 Node SftpDirectory.getChild(String name)
           
 Node SftpFileSystem.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.sftp that return types with arguments of type Node
 List<Node> SftpDirectory.getChildren()
           
 List<Node> SftpDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.sftp with parameters of type Node
 int SftpNode.compareTo(Node node)
           
 boolean SftpNode.equals(Node node)
           
 

Uses of Node in dk.apaq.vfs.impl.subfs
 

Classes in dk.apaq.vfs.impl.subfs that implement Node
 class SubDirectory
           
 class SubFile
           
 class SubNode
           
 

Methods in dk.apaq.vfs.impl.subfs that return Node
 Node SubDirectory.getChild(String name)
           
 Node SubFs.getNode(String path)
           
 

Methods in dk.apaq.vfs.impl.subfs that return types with arguments of type Node
 List<Node> SubDirectory.getChildren()
           
 List<Node> SubDirectory.getChildren(NodeFilter filter)
           
 

Methods in dk.apaq.vfs.impl.subfs with parameters of type Node
 int SubNode.compareTo(Node node)
           
 boolean SubNode.equals(Node node)
           
 

Constructors in dk.apaq.vfs.impl.subfs with parameters of type Node
SubNode(FileSystem fs, SubDirectory parent, Node subbedNode)
           
 



Copyright © 2011. All Rights Reserved.