Package org.jnode.apps.jpartition.commands

Examples of org.jnode.apps.jpartition.commands.CreatePartitionCommand


    public Partition createPartition(long start, long size) throws Exception {
        checkSelectedDevice();

        Partition newPart = selectedDevice.addPartition(start, size);
        cmdProcessor.addCommand(new CreatePartitionCommand((IDEDevice) selectedDevice.getDevice(),
                0, start, size));

        return newPart;
    }
View Full Code Here

TOP

Related Classes of org.jnode.apps.jpartition.commands.CreatePartitionCommand

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.