Package com.projity.pm.assignment

Examples of com.projity.pm.assignment.Assignment.backupDetail()


    Iterator i = assignments.iterator();
    Assignment assignment;
    ArrayList detail=new ArrayList(assignments.size());
    while (i.hasNext()) {
      assignment = (Assignment)i.next();
      detail.add(assignment.backupDetail());
    }
    return new TaskSnapshotBackup(snapshot.getCurrentSchedule(),detail);
  }
  public static void restore(TaskSnapshot snapshot,TaskSnapshotBackup backup){
    if (backup==null||snapshot==null) return;
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.