?? childaxis.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 a child:: step in a path expression. */public class ChildAxis extends TreeScanner{ public static ChildAxis make (NodePredicate type) { ChildAxis axis = new ChildAxis(); axis.type = type; return axis; } public void scan (AbstractSequence seq, int ipos, PositionConsumer out) { int child = seq.firstChildPos(ipos, type); while (child != 0) { out.writePosition(seq, child); child = seq.nextMatching(child, type, -1, false); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -