Package org.springsource.ide.eclipse.commons.core

Examples of org.springsource.ide.eclipse.commons.core.Entry


  }

  public void executeCommand(String command) {
    new CommandJob(command);

    history.add(new Entry(command, project.getName()));
  }
View Full Code Here


          counter++;
        }
      }
    }

    Entry chosen = commandHistoryPopup(commandText, filteredEntries.toArray(new Entry[filteredEntries.size()]));
    if (chosen != null) {
      commandText.setText(chosen.getCommand());
      commandText.setSelection(chosen.getCommand().length());
    }
  }
View Full Code Here

TOP

Related Classes of org.springsource.ide.eclipse.commons.core.Entry

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.