Package org.jnode.driver.block.floppy

Examples of org.jnode.driver.block.floppy.FloppyDevice


        };

//        Class<?>[] argCls = new Class[]{FloppyControllerBus.class, int.class, FloppyDriveParameters.class};
//        Object[] args = new Object[]{bus, new Integer(drive), dp};
//        return (FloppyDevice) MockUtils.createMockObject(FloppyDevice.class, initializer, argCls, args);
        return new FloppyDevice(bus, drive, dp);
    }
View Full Code Here


public class DefaultFloppyDeviceFactory implements FloppyDeviceFactory {
    public DefaultFloppyDeviceFactory() {
    }

    public FloppyDevice createDevice(FloppyControllerBus bus, int drive, FloppyDriveParameters dp) {
        return new FloppyDevice(bus, drive, dp);
    }
View Full Code Here

TOP

Related Classes of org.jnode.driver.block.floppy.FloppyDevice

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.