1 55 package org.jboss.axis.wsdl.symbolTable; 56 57 import javax.xml.namespace.QName ; 58 59 67 public class ElementDecl 68 { 69 private QName name; 70 private TypeEntry type; 71 private boolean minOccursIs0 = false; 77 78 private boolean anyElement = false; 81 82 public ElementDecl() 83 { 84 } 85 86 public ElementDecl(TypeEntry type, QName name) 87 { 88 this.type = type; 89 this.name = name; 90 } 91 92 public TypeEntry getType() 93 { 94 return type; 95 } 96 97 public void setType(TypeEntry type) 98 { 99 this.type = type; 100 } 101 102 public QName getName() 103 { 104 return name; 105 } 106 107 public void setName(QName name) 108 { 109 this.name = name; 110 } 111 112 public boolean getMinOccursIs0() 113 { 114 return minOccursIs0; 115 } 116 117 public void setMinOccursIs0(boolean minOccursIs0) 118 { 119 this.minOccursIs0 = minOccursIs0; 120 } 121 122 public boolean getAnyElement() 123 { 124 return anyElement; 125 } 126 127 public void setAnyElement(boolean anyElement) 128 { 129 this.anyElement = anyElement; 130 } 131 } 132 | Popular Tags |