Package org.globus.workspace.client.modes

Examples of org.globus.workspace.client.modes.Destroy


    private void chooseMode() throws ParameterProblem {

        if (this.cliArgs.mode_deploy) {
            this.setMode(new Deploy(this.pr, this.cliArgs, this));
        } else if (this.cliArgs.mode_destroy) {
            this.setMode(new Destroy(this.pr, this.cliArgs, this));
        } else if (this.cliArgs.mode_factoryRpQuery) {
            this.setMode(new FactoryQuery(this.pr, this.cliArgs, this));
        } else if (this.cliArgs.mode_pause) {
            this.setMode(new Pause(this.pr, this.cliArgs, this));
        } else if (this.cliArgs.mode_reboot) {
View Full Code Here

TOP

Related Classes of org.globus.workspace.client.modes.Destroy

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.