initialcontext.java
来自「JXPath」· Java 代码 · 共 83 行
JAVA
83 行
/*
* Copyright 1999-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jxpath.ri.axes;
import org.apache.commons.jxpath.Pointer;
import org.apache.commons.jxpath.ri.EvalContext;
import org.apache.commons.jxpath.ri.model.NodePointer;
/**
* A single-set EvalContext that provides access to the current node of
* the parent context and nothing else. It does not pass the iteration
* on to the parent context.
*
* @author Dmitri Plotnikov
* @version $Revision: 1.15 $ $Date: 2004/07/30 13:51:01 $
*/
public class InitialContext extends EvalContext {
private boolean startedSet = false;
private boolean started = false;
private boolean collection;
private NodePointer nodePointer;
public InitialContext(EvalContext parentContext) {
super(parentContext);
nodePointer =
(NodePointer) parentContext.getCurrentNodePointer().clone();
if (nodePointer != null) {
collection =
(nodePointer.getIndex() == NodePointer.WHOLE_COLLECTION);
}
}
public Pointer getSingleNodePointer() {
return nodePointer;
}
public NodePointer getCurrentNodePointer() {
return nodePointer;
}
public Object getValue() {
return nodePointer.getValue();
}
public boolean nextNode() {
return setPosition(position + 1);
}
public boolean setPosition(int position) {
this.position = position;
if (collection) {
if (position >= 1 && position <= nodePointer.getLength()) {
nodePointer.setIndex(position - 1);
return true;
}
return false;
}
else {
return position == 1;
}
}
public boolean nextSet() {
if (started) {
return false;
}
started = true;
return true;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?