Repository.Task.UpdateCorrectiveTask: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 3: Line 3:


== Syntax  ==
== Syntax  ==
*UpdateCorrectiveTask( task {{APIPrefix|As}} [[cCorrectiveTask Class|cCorrectiveTask]] ){{APIPrefix|As Boolean}} {{APIComment|{{Template:Repository.UpdateCorrectiveTask.Cmt}}}}
*UpdateCorrectiveTask( task {{APIPrefix|As}} [[cCorrectiveTask Class|cCorrectiveTask]] ){{APIPrefix|As Boolean}}  
*UpdateScheduledTask( task {{APIPrefix|As}} [[cScheduledTask Class|cScheduledTask]] ){{APIPrefix|As Boolean}} {{APIComment|{{Template:Repository.UpdateScheduledTask.Cmt}}}}


Parameters
Parameters
:''task'': The [[cCorrectiveTask Class|cCorrectiveTask]] or [[cScheduledTask Class|cScheduledTask]] to update.
:''task'': The [[cCorrectiveTask Class|cCorrectiveTask]] to update.


== Usage Example ==
== Usage Example ==

Revision as of 21:03, 22 May 2015


Updates the specified task in the repository. Returns True if successful, otherwise returns False.

Syntax

Parameters

task: The cCorrectiveTask to update.

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
 
 'Set a first available project as current. 
 MyRepository.Project.SetCurrentProject(0)

 'Get the list of corrective tasks from the current project. 
 Dim ListOfCorrectiveTasks() As cCorrectiveTask
 ListOfCorrectiveTasks = MyRepository.Task.GetAllCorrectiveTasks()
 
 'After updating the task, update the repository 
 Dim SuccessUpdateCorrectiveTask As Boolean = False
 SuccessUpdateCorrectiveTask = MyRepository.Task.UpdateCorrectiveTask(ListOfCorrectiveTasks(0))