NodeListIterator: added getSize()

thobaben_serialize
Harald Wolff 2015-02-04 01:09:13 +01:00
parent 6d980ac411
commit 242f0a0249
1 changed files with 4 additions and 0 deletions

View File

@ -34,5 +34,9 @@ public class NodeListIterator implements Iterable<Element>{
return this.elements.iterator();
}
public int size(){
return this.elements.size();
}
}