コード例 #1
0
 /** Does the extension support post-tasks for this kind of operation. */
 public boolean hasTask(BaseMasterExt ext) {
   return ext.hasPostRemoveAnnotationTask();
 }
コード例 #2
0
 /** Does the extension support pre-tests for this type of operation. */
 public boolean hasTest(BaseMasterExt ext) {
   return ext.hasPreRemoveAnnotationTest();
 }
コード例 #3
0
 /**
  * Perform the pre-test passed for this type of operation.
  *
  * @throws PipelineException If the test fails.
  */
 public void performTest(BaseMasterExt ext) throws PipelineException {
   ext.preRemoveAnnotationTest(pNodeName, pAnnotName);
 }
コード例 #4
0
 /**
  * Perform the pre-test passed for this type of operation.
  *
  * @throws PipelineException If the test fails.
  */
 public void performTest(BaseMasterExt ext) throws PipelineException {
   ext.preSetWorkGroupsTest(pWorkGroups);
 }
コード例 #5
0
 /** Does the extension support post-tasks for this kind of operation. */
 public boolean hasTask(BaseMasterExt ext) {
   return ext.hasPostSetWorkGroupsTask();
 }
コード例 #6
0
 /** Does the extension support post-tasks for this kind of operation. */
 public boolean hasTask(BaseMasterExt ext) {
   return ext.hasPostRevertFilesTask();
 }
コード例 #7
0
 /** Does the extension support pre-tests for this type of operation. */
 public boolean hasTest(BaseMasterExt ext) {
   return ext.hasPreSetWorkGroupsTest();
 }
コード例 #8
0
 /**
  * Perform the pre-test passed for this type of operation.
  *
  * @throws PipelineException If the test fails.
  */
 public void performTest(BaseMasterExt ext) throws PipelineException {
   ext.preRevertFilesTest(pNodeID, pFiles);
 }
コード例 #9
0
 /** Does the extension support pre-tests for this type of operation. */
 public boolean hasTest(BaseMasterExt ext) {
   return ext.hasPreRevertFilesTest();
 }
コード例 #10
0
 /** Does the extension support post-tasks for this kind of operation. */
 public boolean hasTask(BaseMasterExt ext) {
   return ext.hasPostLinkTask();
 }
コード例 #11
0
 /**
  * Perform the pre-test passed for this type of operation.
  *
  * @throws PipelineException If the test fails.
  */
 public void performTest(BaseMasterExt ext) throws PipelineException {
   ext.preLinkTest(pAuthor, pView, pTarget, pSource, pPolicy, pRelationship, pFrameOffset);
 }
コード例 #12
0
 /** Does the extension support pre-tests for this type of operation. */
 public boolean hasTest(BaseMasterExt ext) {
   return ext.hasPreLinkTest();
 }