Package net.sourceforge.javautil.common.io.impl

Examples of net.sourceforge.javautil.common.io.impl.DirectoryFileLinked


  protected IVirtualArtifact wrap (IVirtualArtifact artifact) {
    if (artifact == null) return null;
   
    if ( !this.isSystemArtifact(artifact) && getSystemFor(artifact) != this ) {
      if (artifact instanceof IVirtualFile) {
        artifact = new DirectoryFileLinked(this, (IVirtualFile) artifact);
      } else {
        artifact = new DirectoryLinked((IVirtualDirectory)artifact);
      }
    }
    return artifact;
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.common.io.impl.DirectoryFileLinked

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.