Package org.jnode.apps.jpartition.consoleview.components

Examples of org.jnode.apps.jpartition.consoleview.components.NumberField


        }
    }

    private Partition createPartition(Partition freePart) throws Exception {
        long size = freePart.getSize();
        NumberField sizeField = new NumberField(context);
        size = sizeField.show("Size of the new partition ", size, 1, size);

        return UserFacade.getInstance().createPartition(freePart.getStart(), size);
    }
View Full Code Here

TOP

Related Classes of org.jnode.apps.jpartition.consoleview.components.NumberField

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.