1 57 58 package org.apache.wsif.compiler.schema.tools; 59 60 65 public class SchemaAnyAttribute implements SchemaType { 66 67 private String targetURI; 69 70 74 public SchemaAnyAttribute(String targetURI) { 75 this.targetURI = targetURI; 76 } 77 78 83 public int getElementType() { 84 return ANYATTRIBUTE; 85 } 86 87 92 public String getName() { 93 return null; 94 } 95 96 101 public String getTargetURI() { 102 return targetURI; 103 104 } 105 } | Popular Tags |