Create a AttributeIterator object.paramcompiler A reference to the Compiler that contains the op map.paramopPos The position within the op map, which contains the location path expression for this itterator.throwsjavax.xml.transform.TransformerException super(compiler, opPos, analysis);
super(compiler, opPos, analysis);
Returns the axis being iterated, if it is known.returnAxis.CHILD, etc., or -1 if the axis is not known or is of multiple types. return com.sun.org.apache.xml.internal.dtm.Axis.ATTRIBUTE;
return com.sun.org.apache.xml.internal.dtm.Axis.ATTRIBUTE;
Get the next node via getFirstAttribute && getNextAttribute. m_lastFetched = (DTM.NULL == m_lastFetched) ? m_cdtm.getFirstAttribute(m_context) : m_cdtm.getNextAttribute(m_lastFetched); return m_lastFetched;
m_lastFetched = (DTM.NULL == m_lastFetched) ? m_cdtm.getFirstAttribute(m_context) : m_cdtm.getNextAttribute(m_lastFetched); return m_lastFetched;