Uses of Interface
org.jboss.virtual.spi.VirtualFileHandler

Packages that use VirtualFileHandler
org.jboss.virtual   
org.jboss.virtual.plugins.context   
org.jboss.virtual.plugins.context.file   
org.jboss.virtual.plugins.context.jar   
org.jboss.virtual.plugins.context.memory   
org.jboss.virtual.plugins.context.temp   
org.jboss.virtual.plugins.context.vfs   
org.jboss.virtual.plugins.context.zip   
org.jboss.virtual.plugins.copy   
org.jboss.virtual.plugins.registry   
org.jboss.virtual.plugins.vfs   
org.jboss.virtual.plugins.vfs.helpers   
org.jboss.virtual.spi   
 

Uses of VirtualFileHandler in org.jboss.virtual
 

Constructors in org.jboss.virtual with parameters of type VirtualFileHandler
VirtualFile(VirtualFileHandler handler)
          Create a new VirtualFile.
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context
 

Classes in org.jboss.virtual.plugins.context that implement VirtualFileHandler
 class AbstractURIHandler
          URIHandler stub.
 class AbstractURLHandler
          URLHandler.
 class AbstractVirtualFileHandler
          AbstractVirtualFileHandler.
 class DelegatingHandler
          A delegating VirtualFileHandler that allows for overriding the delegate parent and name.
 class ReplacementHandler
          A replacement handler.
 

Methods in org.jboss.virtual.plugins.context that return VirtualFileHandler
 VirtualFileHandler StructuredVirtualFileHandler.createChildHandler(String name)
          Create a virtual file context
 VirtualFileHandler DelegatingHandler.getChild(String path)
           
 VirtualFileHandler AbstractVFSContext.getChild(VirtualFileHandler parent, String path)
           
 VirtualFileHandler DelegatingHandler.getDelegate()
           
 VirtualFileHandler AbstractVirtualFileHandler.getParent()
          Get this handler's parent.
 VirtualFileHandler AbstractVFSContext.getRootPeer()
           
 VirtualFileHandler AbstractVirtualFileHandler.simpleFindChild(String path)
          Simple implementation of findChild
 VirtualFileHandler AbstractVirtualFileHandler.structuredFindChild(String path)
          Structured implementation of get child
 

Methods in org.jboss.virtual.plugins.context that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> DelegatingHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> AbstractVFSContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
           
 

Methods in org.jboss.virtual.plugins.context with parameters of type VirtualFileHandler
 void HierarchyVirtualFileHandler.addChild(VirtualFileHandler child)
          Add a child.
 VirtualFileHandler AbstractVFSContext.getChild(VirtualFileHandler parent, String path)
           
 List<VirtualFileHandler> AbstractVFSContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
           
 URL AbstractVFSContext.getChildURL(VirtualFileHandler parent, String name)
          Construct a URL from a given parent and a name
protected  void AbstractVirtualFileHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
          Replace original child with unpacked replacement.
protected  void DelegatingHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
 void AbstractVirtualFileHandler.replaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
 void DelegatingHandler.setDelegate(VirtualFileHandler handler)
           
 void AbstractVFSContext.setRootPeer(VirtualFileHandler handler)
           
 void AbstractVFSContext.visit(VirtualFileHandler handler, VirtualFileHandlerVisitor visitor)
           
protected  void AbstractVFSContext.visit(VirtualFileHandler handler, VirtualFileHandlerVisitor visitor, boolean includeRoot, boolean leavesOnly, boolean ignoreErrors, boolean includeHidden, VirtualFileFilter recurseFilter)
          Visit.
 

Constructors in org.jboss.virtual.plugins.context with parameters of type VirtualFileHandler
AbstractURIHandler(VFSContext context, VirtualFileHandler parent, URI uri, String name)
          Create a newURLHandler.
AbstractURLHandler(VFSContext context, VirtualFileHandler parent, URL url, String name)
          Create a newURLHandler.
AbstractVirtualFileHandler(VFSContext context, VirtualFileHandler parent, String name)
          Create a new handler
DelegatingHandler(VFSContext context, VirtualFileHandler parent, String name)
          Create a DelegatingHandler without a delegate - which will have to be set afterwards
DelegatingHandler(VFSContext context, VirtualFileHandler parent, String name, VirtualFileHandler delegate)
          Create a DelegatingHandler
ReplacementHandler(VFSContext context, VirtualFileHandler parent, String name, VirtualFileHandler delegate)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.file
 

Classes in org.jboss.virtual.plugins.context.file that implement VirtualFileHandler
 class FileHandler
          FileHandler.
 class LinkHandler
          A handler for link directories.
 

Methods in org.jboss.virtual.plugins.context.file that return VirtualFileHandler
 VirtualFileHandler LinkHandler.createChildHandler(String name)
           
 VirtualFileHandler FileHandler.createChildHandler(String name)
           
protected  VirtualFileHandler LinkHandler.createLinkHandler(VirtualFileHandler parent, String name, URI linkURI)
           
 VirtualFileHandler FileSystemContext.createVirtualFileHandler(VirtualFileHandler parent, File file)
          Create a new virtual file handler
 VirtualFileHandler FileSystemContext.createVirtualFileHandler(VirtualFileHandler parent, File file, URI uri)
          Create a new virtual file handler
 VirtualFileHandler LinkHandler.getChild(String path)
           
 VirtualFileHandler FileHandler.getChild(String path)
           
 VirtualFileHandler FileSystemContext.getRoot()
           
 

Methods in org.jboss.virtual.plugins.context.file that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> LinkHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> FileHandler.getChildren(boolean ignoreErrors)
           
 

Methods in org.jboss.virtual.plugins.context.file with parameters of type VirtualFileHandler
protected  VirtualFileHandler LinkHandler.createLinkHandler(VirtualFileHandler parent, String name, URI linkURI)
           
 VirtualFileHandler FileSystemContext.createVirtualFileHandler(VirtualFileHandler parent, File file)
          Create a new virtual file handler
 VirtualFileHandler FileSystemContext.createVirtualFileHandler(VirtualFileHandler parent, File file, URI uri)
          Create a new virtual file handler
protected  void FileHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  DelegatingHandler FileSystemContext.mountZipFS(VirtualFileHandler parent, String name, File file)
          Create zip file system.
 

Constructors in org.jboss.virtual.plugins.context.file with parameters of type VirtualFileHandler
FileHandler(FileSystemContext context, VirtualFileHandler parent, File file, URI uri)
          Create a new FileHandler
FileHandler(FileSystemContext context, VirtualFileHandler parent, File file, URL url)
          Create a new FileHandler.
LinkHandler(FileSystemContext context, VirtualFileHandler parent, URI uri, String name, List<LinkInfo> links)
          Create a new LinkHandler.
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.jar
 

Classes in org.jboss.virtual.plugins.context.jar that implement VirtualFileHandler
 class AbstractJarHandler
          AbstractJarHandler.
 class AbstractStructuredJarHandler<T>
          AbstractStructuredJarHandler.
 class JarEntryContents
          A nested jar contents implementation used to represent a jar within a jar.
 class JarEntryHandler
          JarEntryHandler.
 class JarHandler
          JarHandler.
 class NestedJarFromStream
          A nested jar implementation used to represent a jar within a jar.
 class NestedJarHandler
          Nested Jar Handler.
 class NoCopyNestedJarHandler
          Nested Jar Handler.
 class SynthenticDirEntryHandler
          SynthenticDirEntryHandler represents non-existent directory jar entry.
 

Methods in org.jboss.virtual.plugins.context.jar that return VirtualFileHandler
protected  VirtualFileHandler AbstractStructuredJarHandler.buildParents(String parentName, Map<String,VirtualFileHandler> parentMap, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper)
          Create any missing parents.
 VirtualFileHandler NestedJarFromStream.createChildHandler(String name)
           
 VirtualFileHandler JarEntryHandler.createChildHandler(String name)
           
 VirtualFileHandler JarEntryContents.createChildHandler(String name)
           
 VirtualFileHandler SynthenticDirEntryHandler.createChildHandler(String name)
          Create a child handler for the given name.
 VirtualFileHandler AbstractStructuredJarHandler.createChildHandler(String name)
           
protected  VirtualFileHandler AbstractStructuredJarHandler.createSynthenticParent(VirtualFileHandler parent, String path, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper)
           
protected  VirtualFileHandler JarContext.createVirtualFileHandler(VirtualFileHandler parent, URL url)
          Create a new virtual file handler
protected  VirtualFileHandler NestedJarFromStream.createVirtualFileHandler(VirtualFileHandler parent, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<byte[]> wrapper, String entryName)
           
protected  VirtualFileHandler AbstractStructuredJarHandler.createVirtualFileHandler(VirtualFileHandler parent, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper, String entryName)
          Create a new virtual file handler
protected  VirtualFileHandler JarEntryContents.findChildHandler(String name)
          Find the handler.
 VirtualFileHandler NestedJarFromStream.getChild(String path)
           
 VirtualFileHandler NoCopyNestedJarHandler.getChild(String path)
           
 VirtualFileHandler JarEntryHandler.getChild(String path)
           
 VirtualFileHandler JarEntryContents.getChild(String path)
           
 VirtualFileHandler SynthenticDirEntryHandler.getChild(String path)
           
 VirtualFileHandler AbstractStructuredJarHandler.getChild(String path)
           
 VirtualFileHandler JarContext.getRoot()
           
 

Methods in org.jboss.virtual.plugins.context.jar that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> NestedJarFromStream.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> NoCopyNestedJarHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> JarEntryHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> JarEntryContents.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> SynthenticDirEntryHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> AbstractStructuredJarHandler.getChildren(boolean ignoreErrors)
           
 

Methods in org.jboss.virtual.plugins.context.jar with parameters of type VirtualFileHandler
 void JarEntryHandler.addChild(VirtualFileHandler child)
          Add a child to an entry
 void JarEntryContents.addChild(VirtualFileHandler child)
          Add a child to an entry
 void SynthenticDirEntryHandler.addChild(VirtualFileHandler child)
          Add a child to an entry
static NestedJarHandler NestedJarHandler.create(VFSContext context, VirtualFileHandler parent, JarFile parentJar, ZipEntry entry, URL url, String entryName)
           
protected  VirtualFileHandler AbstractStructuredJarHandler.createSynthenticParent(VirtualFileHandler parent, String path, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper)
           
protected  VirtualFileHandler JarContext.createVirtualFileHandler(VirtualFileHandler parent, URL url)
          Create a new virtual file handler
protected  VirtualFileHandler NestedJarFromStream.createVirtualFileHandler(VirtualFileHandler parent, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<byte[]> wrapper, String entryName)
           
protected  VirtualFileHandler AbstractStructuredJarHandler.createVirtualFileHandler(VirtualFileHandler parent, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper, String entryName)
          Create a new virtual file handler
protected  URL AbstractJarHandler.getURL(VirtualFileHandler parent, String path, boolean isDirEntry)
          Create the URL for the entry represented by path.
protected  void NoCopyNestedJarHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  void JarEntryHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  void JarEntryContents.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  void SynthenticDirEntryHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  void AbstractStructuredJarHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
 

Method parameters in org.jboss.virtual.plugins.context.jar with type arguments of type VirtualFileHandler
protected  VirtualFileHandler AbstractStructuredJarHandler.buildParents(String parentName, Map<String,VirtualFileHandler> parentMap, org.jboss.virtual.plugins.context.jar.ZipEntryWrapper<T> wrapper)
          Create any missing parents.
 

Constructors in org.jboss.virtual.plugins.context.jar with parameters of type VirtualFileHandler
AbstractJarHandler(VFSContext context, VirtualFileHandler parent, URL url, JarFile jar, ZipEntry entry, String name)
          Create a new JarHandler.
AbstractStructuredJarHandler(VFSContext context, VirtualFileHandler parent, URL url, JarFile jar, ZipEntry entry, String name)
          Create a new JarHandler.
JarEntryHandler(VFSContext context, VirtualFileHandler parent, JarFile jar, ZipEntry entry, String entryName, URL url)
          Create a new JarHandler.
JarHandler(VFSContext context, VirtualFileHandler parent, File file, URL url, String name)
           
JarHandler(VFSContext context, VirtualFileHandler parent, URL url, String name)
          Create a new JarHandler.
NestedJarFromStream(VFSContext context, VirtualFileHandler parent, ZipInputStream zis, URL jarURL, JarFile jar, ZipEntry entry, String entryName)
          Create a nested jar from the parent zip inputstream/zip entry.
NestedJarHandler(VFSContext context, VirtualFileHandler parent, JarFile parentJar, ZipEntry entry, URL original, File temp, String entryName)
          Create a new NestedJarHandler.
NoCopyNestedJarHandler(VFSContext context, VirtualFileHandler parent, JarFile parentJar, ZipEntry entry, URL url, String entryName)
          Create a new NestedJarHandler.
SynthenticDirEntryHandler(VFSContext context, VirtualFileHandler parent, String entryName, long lastModified, URL url)
          Create a new SynthenticDirEntryHandler.
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.memory
 

Classes in org.jboss.virtual.plugins.context.memory that implement VirtualFileHandler
 class MemoryContextHandler
          Virtual memory context handler.
 

Methods in org.jboss.virtual.plugins.context.memory that return VirtualFileHandler
 VirtualFileHandler MemoryContextHandler.createChildHandler(String name)
          Called by structuredFindChild
 VirtualFileHandler MemoryContextHandler.getChild(String path)
           
 VirtualFileHandler MemoryContext.getRoot()
           
 

Methods in org.jboss.virtual.plugins.context.memory that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> MemoryContextHandler.getChildren(boolean ignoreErrors)
           
 

Constructors in org.jboss.virtual.plugins.context.memory with parameters of type VirtualFileHandler
MemoryContextHandler(VFSContext context, VirtualFileHandler parent, URL url, String name)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.temp
 

Methods in org.jboss.virtual.plugins.context.temp that return VirtualFileHandler
 VirtualFileHandler BasicTempInfo.getHandler()
           
 

Constructors in org.jboss.virtual.plugins.context.temp with parameters of type VirtualFileHandler
BasicTempInfo(String path, File file, VirtualFileHandler handler)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.vfs
 

Classes in org.jboss.virtual.plugins.context.vfs that implement VirtualFileHandler
 class AssembledDirectoryHandler
          The assembled directory handler.
 class AssembledFileHandler
          The assembled file handler.
 class ByteArrayHandler
          ByteArrayHandler.
 

Methods in org.jboss.virtual.plugins.context.vfs that return VirtualFileHandler
 VirtualFileHandler AssembledDirectoryHandler.addChild(VirtualFileHandler handler)
           
 VirtualFileHandler AssembledDirectoryHandler.createChildHandler(String name)
           
 VirtualFileHandler AssembledDirectoryHandler.findChild(String name)
           
 VirtualFileHandler AssembledDirectoryHandler.getChild(String path)
           
 VirtualFileHandler ByteArrayHandler.getChild(String path)
           
 VirtualFileHandler AssembledFileHandler.getChild(String path)
           
 

Methods in org.jboss.virtual.plugins.context.vfs that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> AssembledDirectoryHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> ByteArrayHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> AssembledFileHandler.getChildren(boolean ignoreErrors)
           
 

Methods in org.jboss.virtual.plugins.context.vfs with parameters of type VirtualFileHandler
 VirtualFileHandler AssembledDirectoryHandler.addChild(VirtualFileHandler handler)
           
protected  void AssembledDirectoryHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
 

Constructors in org.jboss.virtual.plugins.context.vfs with parameters of type VirtualFileHandler
AssembledFileHandler(VFSContext context, AssembledDirectoryHandler parent, String name, VirtualFileHandler delegate)
           
ByteArrayHandler(VFSContext context, VirtualFileHandler parent, String name, byte[] bytes)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.context.zip
 

Classes in org.jboss.virtual.plugins.context.zip that implement VirtualFileHandler
 class ZipEntryHandler
          Handler representing an individual file (ZipEntry) within ZipEntryContext
 

Methods in org.jboss.virtual.plugins.context.zip that return VirtualFileHandler
 VirtualFileHandler ZipEntryHandler.createChildHandler(String name)
           
 VirtualFileHandler ZipEntryHandler.getChild(String path)
           
 VirtualFileHandler ZipEntryContext.getRoot()
          Returns this context's root
 

Methods in org.jboss.virtual.plugins.context.zip that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> ZipEntryHandler.getChildren(boolean ignoreErrors)
           
 List<VirtualFileHandler> ZipEntryContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
          Returns a list of children for a given parent
 

Methods in org.jboss.virtual.plugins.context.zip with parameters of type VirtualFileHandler
 List<VirtualFileHandler> ZipEntryContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
          Returns a list of children for a given parent
protected  void ZipEntryHandler.internalReplaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
           
protected  DelegatingHandler ZipEntryContext.mountZipFile(VirtualFileHandler parent, String name, File file)
          Mount ZipEntryContext created around extracted nested archive
protected  DelegatingHandler ZipEntryContext.mountZipStream(VirtualFileHandler parent, String name, InputStream zipStream)
          Mount ZipEntryContext created around ZipStreamWrapper
 

Constructors in org.jboss.virtual.plugins.context.zip with parameters of type VirtualFileHandler
ZipEntryContext(URL rootURL, VirtualFileHandler peer, URL localRootUrl)
          Create a new ZipEntryContext to be mounted into another context
ZipEntryContext(URL rootURL, VirtualFileHandler peer, URL localRootUrl, boolean autoClean)
          Create a new ZipEntryContext to be mounted into another context
ZipEntryContext(URL rootURL, VirtualFileHandler peer, org.jboss.virtual.plugins.context.zip.ZipWrapper zipWrapper, boolean autoClean)
          Create a new ZipEntryContext to be mounted into another context
ZipEntryTempInfo(String path, File file, VirtualFileHandler handler, ZipEntryContext context)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.copy
 

Methods in org.jboss.virtual.plugins.copy that return VirtualFileHandler
protected static VirtualFileHandler AbstractCopyMechanism.unwrap(VirtualFileHandler handler)
          Unwrap the handler from possible delegate handler.
 

Methods in org.jboss.virtual.plugins.copy with parameters of type VirtualFileHandler
protected  File AbstractCopyMechanism.copy(File guidDir, VirtualFileHandler handler)
          Copy handler.
 VirtualFile CopyMechanism.copy(VirtualFile file, VirtualFileHandler handler)
          Copy handler.
 VirtualFile AbstractCopyMechanism.copy(VirtualFile file, VirtualFileHandler handler)
           
protected  File ExactCopyMechanism.createCopy(File guidDir, VirtualFileHandler handler)
           
protected  File AbstractCopyMechanism.createCopy(File guidDir, VirtualFileHandler handler)
          Create copy destination.
protected  void UnjarCopyMechanism.doCopy(File copy, VirtualFileHandler handler)
           
protected  void ExplodedCopyMechanism.doCopy(File copy, VirtualFileHandler handler)
           
protected  void ExactCopyMechanism.doCopy(File copy, VirtualFileHandler handler)
           
protected abstract  void AbstractCopyMechanism.doCopy(File copy, VirtualFileHandler handler)
          Do copy.
protected static void AbstractCopyMechanism.exactCopy(File copy, VirtualFileHandler root)
          Exact copy.
protected static void AbstractCopyMechanism.explode(File copy, VirtualFileHandler root)
          Explode the root into file.
protected  boolean UnjarCopyMechanism.isAlreadyModified(VirtualFileHandler handler)
           
protected  boolean TempCopyMechanism.isAlreadyModified(VirtualFileHandler handler)
           
protected  boolean ExplodedCopyMechanism.isAlreadyModified(VirtualFileHandler handler)
           
protected  boolean UnpackCopyMechanism.isAlreadyModified(VirtualFileHandler handler)
           
protected abstract  boolean AbstractCopyMechanism.isAlreadyModified(VirtualFileHandler handler)
          Is handler already modified.
protected  boolean UnjarCopyMechanism.replaceOldHandler(VirtualFileHandler parent, VirtualFileHandler oldHandler, VirtualFileHandler newHandler)
           
protected  boolean TempCopyMechanism.replaceOldHandler(VirtualFileHandler parent, VirtualFileHandler oldHandler, VirtualFileHandler newHandler)
           
protected  boolean ExplodedCopyMechanism.replaceOldHandler(VirtualFileHandler parent, VirtualFileHandler oldHandler, VirtualFileHandler newHandler)
           
protected  boolean UnpackCopyMechanism.replaceOldHandler(VirtualFileHandler parent, VirtualFileHandler oldHandler, VirtualFileHandler newHandler)
           
protected abstract  boolean AbstractCopyMechanism.replaceOldHandler(VirtualFileHandler parent, VirtualFileHandler oldHandler, VirtualFileHandler newHandler)
          Should we replace old handler with new.
protected static void AbstractCopyMechanism.rewrite(VirtualFileHandler handler, File file)
          Rewrite contents of handler into file.
protected static void AbstractCopyMechanism.unjar(File copy, VirtualFileHandler handler)
          Unjar to copy parameter.
protected static void AbstractCopyMechanism.unpack(File copy, VirtualFileHandler root, org.jboss.virtual.plugins.copy.AbstractCopyMechanism.WriteRootChecker checker)
          Unpack the root into file.
protected static VirtualFileHandler AbstractCopyMechanism.unwrap(VirtualFileHandler handler)
          Unwrap the handler from possible delegate handler.
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.registry
 

Methods in org.jboss.virtual.plugins.registry that return VirtualFileHandler
protected  VirtualFileHandler DefaultVFSRegistry.findHandler(VirtualFileHandler root, String path, boolean allowNotFound)
          Find the handler.
 

Methods in org.jboss.virtual.plugins.registry with parameters of type VirtualFileHandler
protected  VirtualFileHandler DefaultVFSRegistry.findHandler(VirtualFileHandler root, String path, boolean allowNotFound)
          Find the handler.
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.vfs
 

Constructors in org.jboss.virtual.plugins.vfs with parameters of type VirtualFileHandler
VirtualFileUrlStreamHandler(VirtualFileHandler handler)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.plugins.vfs.helpers
 

Methods in org.jboss.virtual.plugins.vfs.helpers with parameters of type VirtualFileHandler
 void WrappingVirtualFileHandlerVisitor.visit(VirtualFileHandler handler)
           
 

Uses of VirtualFileHandler in org.jboss.virtual.spi
 

Methods in org.jboss.virtual.spi that return VirtualFileHandler
 VirtualFileHandler VirtualFileHandler.getChild(String path)
          Get a child
 VirtualFileHandler VFSContext.getChild(VirtualFileHandler parent, String path)
          Get a child
 VirtualFileHandler TempInfo.getHandler()
          Get the new temp handler.
 VirtualFileHandler VirtualFileHandler.getParent()
          Get the parent
 VirtualFileHandler VFSContext.getRoot()
          Return the root virtual file
 VirtualFileHandler VFSContext.getRootPeer()
          Return the peer representing the root of this context within another context.
 

Methods in org.jboss.virtual.spi that return types with arguments of type VirtualFileHandler
 List<VirtualFileHandler> VirtualFileHandler.getChildren(boolean ignoreErrors)
          Get the children
 List<VirtualFileHandler> VFSContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
          Get the children
 

Methods in org.jboss.virtual.spi with parameters of type VirtualFileHandler
 VirtualFileHandler VFSContext.getChild(VirtualFileHandler parent, String path)
          Get a child
 List<VirtualFileHandler> VFSContext.getChildren(VirtualFileHandler parent, boolean ignoreErrors)
          Get the children
 void VirtualFileHandler.replaceChild(VirtualFileHandler original, VirtualFileHandler replacement)
          Replace child.
 void VirtualFileHandlerVisitor.visit(VirtualFileHandler handler)
          Visit a virtual file
 void VFSContext.visit(VirtualFileHandler handler, VirtualFileHandlerVisitor visitor)
          Visit the virtual file system
 



Copyright © 2009 JBoss, A division of Red Hat, Inc. All Rights Reserved.