public PushStack(Repository repo)
 {
     repo_ = repo;
 }
 public PushStackRelation(Repository repo)
 {
     repo_ = repo;
 }
 public PrintFunction(Repository repo)
 {
     repo_ = repo;
 }
 public Print(Repository repo)
 {
     repo_ = repo;
 }
 public PopStack(Repository repo)
 {
     repo_ = repo;
 }
 public Repository()
 {
     instance = this;
 }
Beispiel #7
0
 /// <summary>
 /// Used to initialise the repository from which the data is fetched for createing xml file
 /// </summary>
 /// <param name="mergedRepo">The repo which contains the final analysis result</param>
 public void SetMergedRepo(Repository mergedRepo)
 {
     repo = mergedRepo;
 }