1 57 58 package org.apache.wsif.compiler.schema.tools; 59 60 import java.util.Vector ; 61 62 67 public class SchemaMGS implements SchemaType { 68 69 71 private boolean isArray = false; 72 private int elementType; 73 private Vector children; 74 private String targetURI; 75 76 public SchemaMGS( 77 boolean isArray, 78 int elementType, 79 Vector children, 80 String targetURI) { 81 82 this.isArray = isArray; 83 this.elementType = elementType; 84 this.children = children; 85 this.targetURI = targetURI; 86 87 } 88 89 94 public Vector getChildren() { 95 return children; 96 } 97 98 103 public int getElementType() { 104 return elementType; 105 } 106 107 112 public String getName() { 113 return null; 114 } 115 116 121 public String getTargetURI() { 122 return targetURI; 123 124 } 125 126 131 public boolean isArray() { 132 return isArray; 133 } 134 } | Popular Tags |