Esempio n. 1
0
 public Node(short type, sbyte[] textarray, int start, int end, System.String element, TagTable tt)
 {
     this.parent           = null;
     this.prev             = null;
     this.next             = null;
     this.last             = null;
     this.start            = start;
     this.end              = end;
     this.textarray        = textarray;
     this.type             = type;
     this.closed           = false;
     this.implicit_Renamed = false;
     this.linebreak        = false;
     this.was              = null;
     this.tag              = null;
     this.element          = element;
     this.attributes       = null;
     this.content          = null;
     if (type == StartTag || type == StartEndTag || type == EndTag)
     {
         tt.findTag(this);
     }
 }