fedora.client.console
Interface Console

All Known Implementing Classes:
AccessConsole, ManagementConsole

public interface Console

Title: Console.java

Description:

Version:
$Id: Console.java 3965 2005-04-21 12:52:40Z rlw $
Author:
cwilper@cs.cornell.edu

Method Summary
 void clear()
          Clears the console.
 java.lang.Object getInvocationTarget(ConsoleCommand cmd)
          Gets an object that fulfills the command.
 boolean isBusy()
          Checks whether the console is busy.
 void print(java.lang.String output)
          Sends the given text to the console.
 void setBusy(boolean busy)
          Tells the console whether it should look busy or not.
 

Method Detail

getInvocationTarget

java.lang.Object getInvocationTarget(ConsoleCommand cmd)
                                     throws java.lang.reflect.InvocationTargetException
Gets an object that fulfills the command.

Throws:
java.lang.reflect.InvocationTargetException

print

void print(java.lang.String output)
Sends the given text to the console.


clear

void clear()
Clears the console.


setBusy

void setBusy(boolean busy)
Tells the console whether it should look busy or not.


isBusy

boolean isBusy()
Checks whether the console is busy.