Package cx.fbn.nevernote.dialog

Examples of cx.fbn.nevernote.dialog.TagMerge


      record.setGuid(selections.get(i).text(2));
      record.setName(selections.get(i).text(0));
      tags.add(record);
    }

    TagMerge mergeDialog = new TagMerge(tags);
    mergeDialog.exec();
    if (!mergeDialog.okClicked())
      return;
    String newGuid = mergeDialog.getNewTagGuid();
   
    for (int i=0; i<tags.size(); i++) {
      if (!tags.get(i).getGuid().equals(newGuid)) {
        List<String> noteGuids = conn.getNoteTable().noteTagsTable.getTagNotes(tags.get(i).getGuid());
        for (int j=0; j<noteGuids.size(); j++) {
View Full Code Here

TOP

Related Classes of cx.fbn.nevernote.dialog.TagMerge

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.