站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 4.1.0

Uses of Interface org.netbeans.api.vcs.commands.Command (NetBeans VCS API) - NetBeans API Javadoc 4.1.0

 

Uses of Interface
org.netbeans.api.vcs.commands.Command

Packages that use Command
org.netbeans.api.vcs   
org.netbeans.api.vcs.commands   
org.netbeans.modules.vcscore   
org.netbeans.modules.vcscore.cmdline   
org.netbeans.modules.vcscore.commands Commands scheduling and executing framework implementation. 
org.netbeans.spi.vcs   
org.netbeans.spi.vcs.commands   
 

Uses of Command in org.netbeans.api.vcs
 

Methods in org.netbeans.api.vcs that return Command
 Command VcsManager.createCommand(String cmdName, FileObject[] files)
          Create a command of the given name, that will act on the array of files.
 Command VcsManager.createCommand(Class cmdClass, FileObject[] files)
          Create a command of the given class, that will act on the array of files.
 

Methods in org.netbeans.api.vcs with parameters of type Command
 boolean VcsManager.showCustomizer(Command cmd)
          Let the user to visually customize the command.
 

Uses of Command in org.netbeans.api.vcs.commands
 

Subinterfaces of Command in org.netbeans.api.vcs.commands
 interface AddCommand
          This interface represents the VCS add command.
 interface AddFolderCommand
          This interface represents the VCS add folder command.
 interface CheckInCommand
          This interface represents the VCS check in command.
 interface CheckOutCommand
          This interface represents the VCS check out command.
 interface DiffCommand
          This interface represents the VCS diff command.
 interface HistoryCommand
          This interface represents the VCS history command.
 interface MessagingCommand
          This interface represents commands, that need a message to complete the VCS action.
 interface PropertiesCommand
          This interface represents the VCS properties command.
 interface RemoveCommand
          This interface represents the VCS remove command.
 interface RemoveFolderCommand
          This interface represents the VCS remove folder command.
 interface RevisionCommand
          This interface represents a VCS command, that can operate on revisions.
 interface UncheckOutCommand
          This interface represents the VCS uncheck out command.
 interface UpdateCommand
          This interface represents the VCS update command.
 

Uses of Command in org.netbeans.modules.vcscore
 

Methods in org.netbeans.modules.vcscore that return Command
 Command DefaultVcsCommandsProvider.createCommand(Class cmdClass)
          Create a new VCS command of the given class type.
 Command DefaultVcsCommandsProvider.createCommand(String cmdName)
          Create a new VCS command of the given name.
 

Methods in org.netbeans.modules.vcscore with parameters of type Command
static CommandTask VcsFSCommandsAction.executeCommand(Command cmd, FileObject[] files)
          Execute the command.
 

Uses of Command in org.netbeans.modules.vcscore.cmdline
 

Methods in org.netbeans.modules.vcscore.cmdline with parameters of type Command
protected  CommandTaskSupport UserCommandSupport.createTask(Command command)
           
protected  void UserCommandSupport.initializeCommand(Command cmd)
          Initialize the command after it's created.
static boolean UserCommandSupport.setCommandFilesFromTable(Command command, Table files, CommandExecutionContext executionContext)
          Set the files as arguments to the command.
 

Uses of Command in org.netbeans.modules.vcscore.commands
 

Subinterfaces of Command in org.netbeans.modules.vcscore.commands
 interface ChainingCommand
          A command, that permits chaining of several command.
 interface FileReaderCommand
          The command, that produces files and their VCS status with respect to the VCS repository.
 interface RecursionAwareCommand
          This command allows to forbid to process directories recursively.
 interface RegexOutputCommand
          This class represents a command which produce elements of parsed data from a text output of the command using a regular expression.
 interface TextOutputCommand
          This class represents a command which produce a text output.
 interface VcsDescribedCommand
          This class represents a command whose behavior is described by VcsCommand.
 

Methods in org.netbeans.modules.vcscore.commands that return Command
 Command ChainingCommand.getNextCommand()
          Get the next command, that should be procesed after this one.
 

Methods in org.netbeans.modules.vcscore.commands with parameters of type Command
 void DialogVisualizerWrapper.commandPreprocessed(Command cmd, boolean status)
           
 void DialogVisualizerWrapper.commandPreprocessing(Command cmd)
           
 boolean CommandProcessor.preprocessSynchronous(Command cmd)
          Pre-process the task.
 void CommandProcessor.preprocess(Command cmd)
          Pre-process the task.
 void CommandProcessor.waitToFinish(Command cmd, Set files)
          Wait to finish the execution of command on a set of files.
 void CommandProcessListener.commandPreprocessing(Command cmd)
          Called when the command is just to be preprocessed.
 void CommandProcessListener.commandPreprocessed(Command cmd, boolean status)
          Called when the preprocessing of the command finished.
 void CommandOutputCollector.commandPreprocessed(Command cmd, boolean status)
          Called when the preprocessing of the command finished.
 void CommandOutputCollector.commandPreprocessing(Command cmd)
          Called when the command is just to be preprocessed.
 void ChainingCommand.setNextCommand(Command cmd)
          Set the next command, that should be procesed after this one.
 

Uses of Command in org.netbeans.spi.vcs
 

Methods in org.netbeans.spi.vcs that return Command
abstract  Command VcsCommandsProvider.createCommand(String cmdName)
          Create a new VCS command of the given name.
abstract  Command VcsCommandsProvider.createCommand(Class cmdClass)
          Create a new VCS command of the given class type.
 

Uses of Command in org.netbeans.spi.vcs.commands
 

Methods in org.netbeans.spi.vcs.commands that return Command
 Command CommandTaskSupport.getCommand()
           
 Command CommandSupport.createCommand()
          Use this method to actually create the command.
protected  Command CommandSupport.getCommand()
          Get the command associated with this command support.
protected  Command CommandSupport.getCommand(CommandTask task)
          Get the command associated with the given task.
 

Methods in org.netbeans.spi.vcs.commands with parameters of type Command
protected  void CommandSupport.initializeCommand(Command cmd)
          Initialize the command after it's created.
protected  CommandTaskSupport CommandSupport.createTask(Command taskCommand)
          Create the CommandTask, that is supposed to execute the command.
protected  EventListener[] CommandSupport.getListeners(Class listenerType, Command command)
          Get the event listeners attached to the associated command, if any.
 

Constructors in org.netbeans.spi.vcs.commands with parameters of type Command
CommandTaskSupport(CommandSupport cmdSupport, Command cmd)
          Creates a new instance of CommandTaskSupport.
 


 

Built on May 4 2005.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.