コード例 #1
0
 //vroom
 public void copyList(List <TagType> input)
 {
     types = input;
     typesList.copyList(input);
 }
コード例 #2
0
 //imagine this function like a high speed tunnel from the form to TTTDisplay
 //sends the tag and tag type lists over to be displayed
 //(there must be a better way to do this but idk man i've looked i cant find anything)
 public void copyLists(List <Tag> tag, List <TagType> type)
 {
     tDisplay.copyList(tag);
     ttDisplay.copyList(type);
 }
コード例 #3
0
 public void copyList(List <Tag> t, List <TagType> tt)
 {
     types = tt;
     tags  = t;
     tagsList.copyList(t);
 }