📄 attributeaxis.java
字号:
// Copyright (c) 2003 Per M.A. Bothner.// This is free software; for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.lists.*;/** Used to implement an attribute:: step in a path expression. */public class AttributeAxis extends TreeScanner{ public static AttributeAxis make (NodePredicate type) { AttributeAxis axis = new AttributeAxis(); axis.type = type; return axis; } public void scan (AbstractSequence seq, int ipos, PositionConsumer out) { ipos = seq.firstAttributePos(ipos); while (ipos != 0) { if (type.isInstancePos(seq, ipos)) out.writePosition(seq, ipos); else if (seq.getNextKind(ipos) != Sequence.ATTRIBUTE_VALUE) break; ipos = seq.nextPos(ipos); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -