Examples of JIFSDirectory


Examples of org.jnode.fs.jifs.JIFSDirectory

        addFSE(new JIFSFdevices(this));
        // directory
        addFSE(new JIFSDthreads(this));
        addFSE(new JIFSDplugins(this));
        addFSE(new JIFSDpluginJars(this));
        addFSE(new JIFSDirectory("extended", this));
    }
View Full Code Here

Examples of org.jnode.fs.jifs.JIFSDirectory

        this.infoEP = infoEP;
        try {
            FileSystemService fSS = InitialNaming.lookup(FileSystemService.NAME);
            final DeviceManager dm = DeviceUtils.getDeviceManager();
            VirtualDevice dev = (VirtualDevice) dm.getDevice(JIFileSystemType.VIRTUAL_DEVICE_NAME);
            JIFSDirectory rootdir = (JIFSDirectory) fSS.getFileSystem(dev).getRootEntry();
            extdir = (JIFSDirectory) rootdir.getEntry("extended").getDirectory();
        } catch (NameNotFoundException e) {
            log.error("filesystemservice / filesystemtype not found");
        } catch (DeviceNotFoundException ex) {
            log.info("no jifs present");
        } catch (IOException ex) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.