Home
last modified time | relevance | path

Searched refs:attributeMap (Results 1 – 2 of 2) sorted by relevance

/system/tools/xsdc/src/com/android/xsdc/
DXsdHandler.java40 final Map<String, String> attributeMap; field in XsdHandler.State
44 State(String name, Map<String, String> attributeMap) { in State() argument
46 this.attributeMap = Collections.unmodifiableMap(attributeMap); in State()
110 Map<String, String> attributeMap = new HashMap<>(); in startElement() local
112 attributeMap.put(attributes.getLocalName(i), attributes.getValue(i)); in startElement()
115 stateStack.push(new State(localName, attributeMap)); in startElement()
195 stateStack.peek().deprecated = isDeprecated(state.attributeMap, state.tags); in endElement()
242 String name = state.attributeMap.get("name"); in makeElement()
243 QName typename = parseQName(state.attributeMap.get("type")); in makeElement()
244 QName ref = parseQName(state.attributeMap.get("ref")); in makeElement()
[all …]
DXmlSchema.java27 final private Map<String, XsdAttribute> attributeMap; field in XmlSchema
30 Map<String, XsdAttribute> attributeMap) { in XmlSchema() argument
33 this.attributeMap = Collections.unmodifiableMap(attributeMap); in XmlSchema()
45 return attributeMap; in getAttributeMap()