1 7 package com.sun.corba.se.impl.activation; 8 9 import org.omg.CORBA.ORB ; 10 11 import java.io.PrintStream ; 12 13 18 19 public interface CommandHandler 20 { 21 String getCommandName(); 22 23 public final static boolean shortHelp = true; 24 public final static boolean longHelp = false; 25 26 void printCommandHelp(PrintStream out, boolean helpType); 27 28 public final static boolean parseError = true; 29 public final static boolean commandDone = false; 30 31 boolean processCommand(String [] cmd, ORB orb, PrintStream out); 32 } 33 | Popular Tags |