1 57 58 package org.apache.wsif.compiler.schema.tools; 59 60 import java.util.Vector ; 61 62 import javax.xml.namespace.QName ; 63 64 69 public class SchemaAttributeGroup implements SchemaType { 70 71 73 private String name; 74 private QName ref; 75 private Vector children; 76 private String targetURI; 77 78 82 public SchemaAttributeGroup( 83 String name, 84 QName ref, 85 Vector children, 86 String targetURI) { 87 this.name = name; 88 this.ref = ref; 89 this.children = children; 90 this.targetURI = targetURI; 91 92 } 93 94 99 public Vector getChildren() { 100 return children; 101 } 102 103 108 public int getElementType() { 109 return ATTRIBUTEGROUP; 110 } 111 112 117 public String getName() { 118 return name; 119 } 120 121 126 public QName getRef() { 127 return ref; 128 } 129 130 135 public String getTargetURI() { 136 return targetURI; 137 138 } 139 } | Popular Tags |