1 package org.apache.axis.wsdl.symbolTable; 2 3 import javax.xml.namespace.QName ; 4 5 public class ContainedEntry extends SymTabEntry { 6 protected TypeEntry type; 8 11 protected ContainedEntry(TypeEntry type, QName qname) { 12 super(qname); 13 this.type = type; 14 } 15 16 19 public TypeEntry getType() { 20 return type; 21 } 22 25 public void setType(TypeEntry type) { 26 this.type = type; 27 } 28 } 29 | Popular Tags |