예제 #1
0
파일: TNODE.cs 프로젝트: matychuck/SPA
 public TNODE(EntityTypeEnum entityTypeEnum)
 {
     Attr           = new ATTR();
     PrevLinks      = new List <LINK>();
     Links          = new List <LINK>();
     EntityTypeEnum = entityTypeEnum;
 }
예제 #2
0
 public void SetAttr(TNODE node, ATTR attr)
 {
     node.Attr = attr;
 }