예제 #1
0
 public void addListAtEnd(NodeList xtl) {
   for (int i = 0, sz = xtl.length(); i < sz; ++i) {
     lll.addElement(xtl.get(i));
   }
 }
예제 #2
0
파일: ExpNew.java 프로젝트: hdthba/remoteTM
 protected NodeList getChildrenForDump() {
   NodeList nl = new NodeList();
   for (int i = 0; i < initializer_args.length(); ++i) nl.addLastChild(initializer_args.get(i));
   nl.addLastChild(initialization);
   return nl;
 }