1 57 58 package org.apache.wsif.compiler.schema.tools; 59 60 65 public class SchemaAny implements SchemaType { 66 67 69 private boolean isArray = false; 70 private String targetURI; 71 72 75 public SchemaAny(boolean isArray, String targetURI) { 76 this.isArray = isArray; 77 this.targetURI = targetURI; 78 } 79 80 85 public int getElementType() { 86 return ANY; 87 } 88 89 94 public String getName() { 95 return null; 96 } 97 98 103 public String getTargetURI() { 104 return targetURI; 105 106 } 107 108 113 public boolean isArray() { 114 return isArray; 115 } 116 } | Popular Tags |