Exemplo n.º 1
0
 public void addChange(String graphml) {
   Node first = new Node();
   first.val = graphml;
   first.setNext(current);
   this.current = first;
 }