Uses of Interface
picasso.util.Command

Packages that use Command
picasso.util   
picasso.view   
picasso.view.commands   
 

Uses of Command in picasso.util
 

Classes in picasso.util that implement Command
 class FileCommand<T>
          An abstract command that allows access to the file system, sub-classes still determine what to do with the file once it is chosen.
 class NamedCommand<T>
          A command with a name (e.g., to display on a button)
 class ThreadedCommand<T>
          Execute a long running command in a separate thread and display the results in a component while the command is running.
 

Constructors in picasso.util with parameters of type Command
NamedCommand(java.lang.String name, Command<T> action)
          Create command with a name and an action.
ThreadedCommand(javax.swing.JComponent view, Command<T> command)
          Create a command that runs the given command and updates the given view over time.
 

Uses of Command in picasso.view
 

Methods in picasso.view with parameters of type Command
 void ButtonPanel.add(java.lang.String name, Command<Pixmap> action)
          Add the given Command as a button with the given name.
 

Uses of Command in picasso.view.commands
 

Classes in picasso.view.commands that implement Command
 class Evaluater
          Evaluate an expression for each pixel in a image.
 class Reader
          Open the chosen file.
 class Writer
          Save the chosen file.