View Javadoc
1   /*******************************************************************************
2    * Copyhacked (H) 2012-2025.
3    * This program and the accompanying materials
4    * are made available under no term at all, use it like
5    * you want, but share and discuss it
6    * every time possible with every body.
7    * 
8    * Contributors:
9    *      ron190 at ymail dot com - initial implementation
10   ******************************************************************************/
11  package com.jsql.view.swing.interaction;
12  
13  import com.jsql.model.bean.database.AbstractElementDatabase;
14  import com.jsql.view.interaction.InteractionCommand;
15  import com.jsql.view.swing.util.MediatorHelper;
16  
17  /**
18   * Stop refreshing the progress bar of an untracked
19   * progression (like colum search).
20   */
21  public class EndIndeterminateProgress implements InteractionCommand {
22      
23      /**
24       * The element in the database tree for which the progress ends.
25       */
26      private final AbstractElementDatabase dataElementDatabase;
27  
28      /**
29       * @param interactionParams Element to update
30       */
31      public EndIndeterminateProgress(Object[] interactionParams) {
32          this.dataElementDatabase = (AbstractElementDatabase) interactionParams[0];
33      }
34  
35      @Override
36      public void execute() {
37          MediatorHelper.treeDatabase().endIndeterminateProgress(this.dataElementDatabase);
38      }
39  }