Package com.elega9t.commons.shell

Examples of com.elega9t.commons.shell.Environment


        super("set");
    }

    @Override
    public int execute(Shell shell) {
        Environment environment = shell.getEnvironment();
        for (String propertyName: environment.getPropertyNames()) {
            shell.outln(propertyName + "=" + environment.getValue(propertyName));
        }
        return 0;
    }
View Full Code Here

TOP

Related Classes of com.elega9t.commons.shell.Environment

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.