Package factOrFiction.model

Examples of factOrFiction.model.Deck.save()


  @Override
  public void doSave(IProgressMonitor monitor) {
    Deck deck = (Deck) getEditorInput().getAdapter(Deck.class);

    if (deck != null) {
      deck.save(monitor, (File) getEditorInput().getAdapter(File.class));
    }
    setDirty(false);
  }

  private static final String DIALOG_SETTING_SECTION_NAME = "SaveLocation"; //$NON-NLS-1$
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.