101102103104105106107108109110111112113
Map loa = new HashMap(); for (; size >= 0; size--) { e = (XmlsStackElement) levels.get(size); Iterator it = e.nodes.iterator(); while (it.hasNext()) { Attr n = (Attr) it.next(); if (!loa.containsKey(n.getName())) loa.put(n.getName(), n); } } ; cur.rendered = true;
5758596061626364656667
} return n; } public Attr getAttribute(Object o, OMElement parent){ Attr at = (Attr)map.get(o); if (at == null){ if (o instanceof OMAttribute || o instanceof OMNamespace) { at = new AttrImpl(o, parent, this); } map.put(o, at);