1 16 17 package org.apache.axis.wsdl.symbolTable; 18 19 import javax.xml.namespace.QName ; 20 21 public class ContainedAttribute extends ContainedEntry { 22 23 24 private boolean optional = false; 25 26 29 protected ContainedAttribute(TypeEntry type, QName qname) { 30 super(type, qname); 31 } 32 33 38 public void setOptional(boolean optional) { 39 this.optional = optional; 40 } 41 42 47 public boolean getOptional() { 48 return optional; 49 } 50 51 } 52 | Popular Tags |