예제 #1
0
 int length() {
   return v.size();
 }
예제 #2
0
 XmlNode item(int index) {
   return (XmlNode) (v.get(index));
 }
예제 #3
0
 void remove(int index) {
   v.remove(index);
 }
예제 #4
0
 private void _add(XmlNode n) {
   v.add(n);
 }