Package com.redhat.ceylon.compiler.typechecker.io.impl

Examples of com.redhat.ceylon.compiler.typechecker.io.impl.ZipFileVirtualFile


* @author Emmanuel Bernard <emmanuel@hibernate.org>
*/
public class VFS {

    public VirtualFile getFromZipFile(ZipFile file) {
        return new ZipFileVirtualFile(file);
    }
View Full Code Here


        return new ZipFileVirtualFile(file);
    }

    public ClosableVirtualFile getFromZipFile(File file) {
        try {
            return new ZipFileVirtualFile(file);
        }
        catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.typechecker.io.impl.ZipFileVirtualFile

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.