Package com.kellerkindt.scs.commands

Examples of com.kellerkindt.scs.commands.PruneCmd


                else if (mainArg.equalsIgnoreCase("disable"))
                    this.cmd = new DisableCmd(sender, args);
                else if (mainArg.equalsIgnoreCase("enable")) //Alias for reload
                    this.cmd = new ReloadCmd(sender, args);
                else if (mainArg.equalsIgnoreCase("prune") || mainArg.equalsIgnoreCase("cleanup"))
                    this.cmd = new PruneCmd(sender, args);
                else if (mainArg.equalsIgnoreCase("report"))
                  this.cmd = new ReportCmd(sender, args);
                else if (mainArg.equalsIgnoreCase("repair"))
                  this.cmd = new RepairCmd(sender, args);
               
View Full Code Here

TOP

Related Classes of com.kellerkindt.scs.commands.PruneCmd

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.