1 package org.python.parser.ast; 3 import org.python.parser.SimpleNode; 4 import java.io.DataOutputStream ; 5 import java.io.IOException ; 6 7 public class Import extends stmtType { 8 public aliasType[] names; 9 10 public Import(aliasType[] names) { 11 this.names = names; 12 } 13 14 public Import(aliasType[] names, SimpleNode parent) { 15 this(names); 16 this.beginLine = parent.beginLine; 17 this.beginColumn = parent.beginColumn; 18 } 19 20 public String toString() { 21 StringBuffer sb = new StringBuffer ("Import["); 22 sb.append("names="); 23 sb.append(dumpThis(this.names)); 24 sb.append("]"); 25 return sb.toString(); 26 } 27 28 public void pickle(DataOutputStream ostream) throws IOException { 29 pickleThis(20, ostream); 30 pickleThis(this.names, ostream); 31 } 32 33 public Object accept(VisitorIF visitor) throws Exception { 34 return visitor.visitImport(this); 35 } 36 37 public void traverse(VisitorIF visitor) throws Exception { 38 if (names != null) { 39 for (int i = 0; i < names.length; i++) { 40 if (names[i] != null) 41 names[i].accept(visitor); 42 } 43 } 44 } 45 46 } 47 | Popular Tags |