Package org.davinci.server.review.persistence

Examples of org.davinci.server.review.persistence.Unmarshaller


    }
    if (reviewHash != null)
      return reviewHash;

    // Load the review file from disk.
    Unmarshaller unmarshaller = new Unmarshaller();
    CommentsDocument document = null;
    synchronized(project){
      document = unmarshaller.unmarshall(project);

      List<Comment> commentList = document.getCommentList();
      reviewHash = new Hashtable<String, Comment>();
      for (Comment comment : commentList) {
        reviewHash.put(comment.getId(), comment);
View Full Code Here

TOP

Related Classes of org.davinci.server.review.persistence.Unmarshaller

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.