Package de.bastiankrol.startexplorer.customcommands

Examples of de.bastiankrol.startexplorer.customcommands.SharedFileFinder


      }

      @Override
      public SharedFileFinder getSharedFileFinder()
      {
        return new SharedFileFinder()
        {
          @Override
          public void startSearch()
          {
            // do nothing
View Full Code Here


  private void addCustomCommandsFromSharedFiles(
      List<CommandConfig> commandConfigList)
  {
    getLogFacility().logDebug(
        "addCustomCommandsFromSharedFiles - start");
    SharedFileFinder sharedFileFinder = getPluginContext()
        .getSharedFileFinder();
    if (sharedFileFinder.hasFinished())
    {
      List<CommandConfig> commandConfigsFromSharedFiles = sharedFileFinder
          .getResult();
      commandConfigList.addAll(commandConfigsFromSharedFiles);
      this.customCommandsFromSharedFileHaveBeenAdded = true;
      getLogFacility().logDebug(
          "Added custom command configs from shared files.");
View Full Code Here

    this.logFacility = new LogFacility();
    this.validator = new Validator();
    this.customCommandResourceViewFactory = new CustomCommandResourceViewFactory();
    this.customCommandEditorFactory = new CustomCommandEditorFactory();
    this.variableManager = this.initVariableManager();
    this.sharedFileFinder = new SharedFileFinder();
    this.messageDialogHelper = new MessageDialogHelper();
  }
View Full Code Here

TOP

Related Classes of de.bastiankrol.startexplorer.customcommands.SharedFileFinder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.