Package cx.fbn.nevernote.evernote

Examples of cx.fbn.nevernote.evernote.EnmlConverter.convert()


  public void updateNoteContent(String guid, String content) {
    logger.log(logger.HIGH, "Entering ListManager.updateNoteContent");
   
    // Actually save the content
    EnmlConverter enml = new EnmlConverter(logger);
    String newContent = enml.convert(guid, content);
    String fixedContent = enml.fixEnXMLCrap(newContent);
    if (fixedContent != null) {
      conn.getNoteTable().updateNoteContent(guid, fixedContent);
      logger.log(logger.EXTREME, "Saving new note resources");
      List<Resource> oldResources = conn.getNoteTable().noteResourceTable.getNoteResources(guid, false);
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.