1 22 package org.jboss.console.twiddle.command; 23 24 30 public interface Command 31 extends Cloneable  32 { 33 String getName(); 34 35 String getDescription(); 36 37 void displayHelp(); 38 39 void setCommandContext(CommandContext context); 40 41 void unsetCommandContext(); 42 43 void execute(String [] args) throws Exception ; 44 45 Object clone(); 46 } 47 | Popular Tags |