Package scratch.ide.popup

Examples of scratch.ide.popup.ScratchListPopupStep


  public void persistConfig(ScratchConfig config) {
    ScratchConfigPersistence.getInstance().updateFrom(config);
  }

  public void displayScratchesListPopup(List<Scratch> scratches, final UserDataHolder userDataHolder) {
    ScratchListPopupStep popupStep = new ScratchListPopupStep(scratches, takeProjectFrom(userDataHolder));
    popupStep.setDefaultOptionIndex(scratchListSelectedIndex);
    ScratchListPopup popup = new ScratchListPopup(popupStep) {

      @Override protected void onNewScratch() {
        SwingUtilities.invokeLater(new Runnable() {
          @Override public void run() {
View Full Code Here

TOP

Related Classes of scratch.ide.popup.ScratchListPopupStep

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.