Uses of Class
org.eclipse.datatools.sqltools.result.OperationCommand

Packages that use OperationCommand
org.eclipse.datatools.sqltools.data.internal.ui   
org.eclipse.datatools.sqltools.editor.core.result   
org.eclipse.datatools.sqltools.result   
org.eclipse.datatools.sqltools.result.internal.core   
org.eclipse.datatools.sqltools.result.internal.model   
org.eclipse.datatools.sqltools.result.internal.ui.actions   
org.eclipse.datatools.sqltools.result.model   
org.eclipse.datatools.sqltools.result.ui   
org.eclipse.datatools.sqltools.sqleditor.result   
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.data.internal.ui
 

Constructors in org.eclipse.datatools.sqltools.data.internal.ui with parameters of type OperationCommand
OutputItemAdapter(OperationCommand outputItem)
           
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.editor.core.result
 

Methods in org.eclipse.datatools.sqltools.editor.core.result that return OperationCommand
 OperationCommand ResultSupportRunnable.getOperationCommand()
          Creates the OperationCommand object which will be used for results view display.
 OperationCommand ResultSupportRunnable.getParentOperationCommand()
          Returns the parent operation command
 

Methods in org.eclipse.datatools.sqltools.editor.core.result with parameters of type OperationCommand
 void ResultSupportRunnable.setParentOperCommand(OperationCommand operCommand)
           
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result
 

Methods in org.eclipse.datatools.sqltools.result that return OperationCommand
 OperationCommand ResultsViewAPI.getSubOperationCommand(OperationCommand parentCmd, int subNum)
          Returns the operation request of the sub-result
 

Methods in org.eclipse.datatools.sqltools.result with parameters of type OperationCommand
 boolean ResultsViewAPI.appendPlainMessage(OperationCommand cmd, java.lang.String message)
          Appends a plain message to the result instance, when using multiple windows display mode, this kind of messages will be displayed on "Message" tab
 boolean ResultsViewAPI.appendResultSet(OperationCommand cmd, IResultSetObject rs)
          Appends an instance of IResultSetObject to SQL Results View.
 boolean ResultsViewAPI.appendResultSet(OperationCommand cmd, java.sql.ResultSet rs)
          Appends a JDBC result set to the result instance.
 boolean ResultsViewAPI.appendStatusMessage(OperationCommand cmd, java.lang.String message)
          Appends a status message to the result instance, when using multiple windows display mode, this kind of messages will be displayed on "Status" tab
 boolean ResultsViewAPI.appendThrowable(OperationCommand cmd, java.lang.Throwable th)
          Appends an exception to the result instance, this won't affect the UI.
 boolean ResultsViewAPI.appendUpdateCountMessage(OperationCommand cmd, int count)
          Appends an update count message to the result instance.
 boolean ResultsViewAPI.appendXMLResultSet(OperationCommand cmd, java.lang.String xmlString)
          Appends an XML result set to SQL Results View.
 int ResultsViewAPI.calculateStatus(OperationCommand command)
          Calculates the status of the result instance based on its sub-results' status.
 boolean ResultsViewAPI.createNewInstance(OperationCommand cmd, java.lang.Runnable terminateHandler)
          Creates a new result instance given the OperationCommand instance
 boolean ResultsViewAPI.createSubInstance(OperationCommand parentCmd, OperationCommand cmd, java.lang.Runnable terminateHandler)
          Creates a sub result instance for the given parent result instance.
 int ResultsViewAPI.getCurrentStatus(OperationCommand cmd)
          Returns the current status of the given operation command
 java.lang.Throwable[] ResultsViewAPI.getFailThrowables(OperationCommand cmd)
          Returns the exceptions thrown when generating the result instance
 java.lang.Throwable[] ResultsViewAPI.getFailThrowables(OperationCommand cmd, boolean includeSubThrowables)
          Returns the exceptions thrown when generating the result instance
 IResultInstance ResultManager.getInstance(OperationCommand cmd)
           
 IResultInstance ResultsViewAPI.getResultInstance(OperationCommand cmd)
          Return the IResultInstance object correlative with the OperationCommand object.
 OperationCommand ResultsViewAPI.getSubOperationCommand(OperationCommand parentCmd, int subNum)
          Returns the operation request of the sub-result
 void IReExecutionRunnable.reExecute(OperationCommand cmd)
          Re-executes the given operation.
 void ResultsViewAPI.saveDetailResults(OperationCommand operationCommand)
          Serialize a result instance according to a specific OperationCommand
 void ResultsViewAPI.saveElapseTime(OperationCommand operationCommand, long elapsedTime)
           
 void ResultsViewAPI.saveParentDetailResults(OperationCommand operationCommand)
          Serialize a result instance and its sub-result instances, if there are, according to a specific OperationCommand.
 void ResultsViewAPI.saveParentElapseTime(OperationCommand operationCommand)
           
 boolean ResultsViewAPI.showParameters(OperationCommand cmd, java.util.List params)
          Shows the parameters on SQL Results View.
 boolean ResultsViewAPI.updateStatus(OperationCommand cmd, int status)
          Updates the status of the result instance.
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result.internal.core
 

Methods in org.eclipse.datatools.sqltools.result.internal.core with parameters of type OperationCommand
 IResultInstance IResultManager.getInstance(OperationCommand cmd)
          Given the OperationCommand, returns the instance.
static IReExecutionRunnable ReExecutionRegistryReader.readProperReExecutionHandler(OperationCommand cmd)
          Given a operation, this method is to find a approporiate IReExecutionRunnable handler to re-execute this operaion.
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result.internal.model
 

Methods in org.eclipse.datatools.sqltools.result.internal.model that return OperationCommand
 OperationCommand ResultInstance.getOperationCommand()
           
 

Methods in org.eclipse.datatools.sqltools.result.internal.model with parameters of type OperationCommand
 IResultInstance ResultInstanceFactory.createNewInstance(OperationCommand cmd, java.lang.Runnable terminateHandler)
          Creates a new result instance given the OperationCommand instance
 IResultInstance ResultInstanceFactory.createNewInstance(OperationCommand cmd, java.lang.Runnable terminateHandler, IResultInstance parentInstance)
          Creates a new result instance given the OperationCommand instance
 void ResultInstance.createSubResult(OperationCommand cmd, java.lang.Runnable terminateHandler)
           
 

Constructors in org.eclipse.datatools.sqltools.result.internal.model with parameters of type OperationCommand
ResultInstance(IResultManager resultmanager, OperationCommand command, java.lang.Runnable terminateHandler)
           
ResultInstance(IResultManager resultmanager, OperationCommand command, java.lang.Runnable terminateHandler, IResultInstance parentResult)
           
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result.internal.ui.actions
 

Constructors in org.eclipse.datatools.sqltools.result.internal.ui.actions with parameters of type OperationCommand
ReExecuteAction(OperationCommand cmd, IReExecutionRunnable runnable)
           
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result.model
 

Methods in org.eclipse.datatools.sqltools.result.model that return OperationCommand
 OperationCommand IResultInstance.getOperationCommand()
          Returns the operation command that produces this result instance.
 

Methods in org.eclipse.datatools.sqltools.result.model with parameters of type OperationCommand
 void IResultInstance.createSubResult(OperationCommand cmd, java.lang.Runnable terminateHandler)
          Creates a sub results
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.result.ui
 

Methods in org.eclipse.datatools.sqltools.result.ui with parameters of type OperationCommand
 int ResultsViewUIAccessor.getRowCount(OperationCommand cmd)
          Returns the row count of current displaying result set of the given result instance, if the current tab is not ressult set or it is in single tab display mode, we will simply return -1.
 void ResultsViewUIAccessor.showTab(OperationCommand cmd, int tabType)
          Sets the focus to the given tab if the current result instance is the given instance.
 void ResultsViewUIAccessor.showTab(OperationCommand cmd, int tabType, int tabNum)
          Sets focus to the given message/result tab with the given tab number.
 void ResultsViewUIAccessor.showTab(OperationCommand cmd, IResultSetObject result)
          Sets the focus to the given result set if the current result instance is the given instance.
 

Uses of OperationCommand in org.eclipse.datatools.sqltools.sqleditor.result
 

Methods in org.eclipse.datatools.sqltools.sqleditor.result that return OperationCommand
 OperationCommand GroupSQLResultRunnable.getOperationCommand()