public AFD()
 {
     this.dato   = "";
     this.Id     = "";
     this.estado = 0;
     this.next1  = null;
     this.next2  = null;
 }
 public void setNext2(AFD next2)
 {
     this.next2 = next2;
 }
 public void setNext1(AFD next1)
 {
     this.next1 = next1;
 }