Guest User

Untitled

a guest
Apr 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public boolean ajouterUnNoeud(Node n, Node parent){
  2. boolean ok=false;
  3. if(n!= null && parent !=null){
  4. parent.appendChild(n);
  5. ok=true;
  6. enregistrer();
  7. }
  8. //ajouter le noeud � la racine:
  9. return ok;
  10. }
Add Comment
Please, Sign In to add comment