Package org.jnode.install

Examples of org.jnode.install.ActionInput


*/
public class CopyFilesAction implements InstallerAction {
    private String targetDirectory;

    public ActionInput getInput(final InputContext inContext) {
        return new ActionInput() {
            public AbstractInstaller.Step collect() {
                targetDirectory = inContext.getStringValue(ActionConstants.INSTALL_ROOT_DIR);
                return AbstractInstaller.Step.forth;
            }
        };
View Full Code Here


*/
public class GrubInstallerAction implements InstallerAction {
    private JGrub jgrub;

    public ActionInput getInput(final InputContext inContext) {
        return new ActionInput() {
            public AbstractInstaller.Step collect() {
                try {
                    String deviceID =
                        inContext.getStringInput("Enter the installation disk device name (example: hda0) : ");

View Full Code Here

TOP

Related Classes of org.jnode.install.ActionInput

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.