Searched defs:node (Results 1 - 5 of 5) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DBranchNode.java61 * Represents a branch node in a version control archive.
82 * The next field in a Branch node points to the next higher
84 * @param vernum the version number for the node
85 * @param next the next node in the logical RCS hierarchy.
99 * Return the last (leaf) node in the branch this node belongs to.
100 * @return The leaf node.
114 * Set the next node in the RCS logical hierarcy.
115 * Update the _parent and _child node accordingly.
117 * a node wit
120 setRCSNext(Node node) argument
[all...]
H A DPath.java71 * to the last node in the path.
93 * Add a node to the Path.
94 * @param node The Node to add.
97 public void add(Node node) argument
99 path.add(node);
113 * Return the last node in the path or null if the path is empty.
114 * @return the last node in the path or null if the path is empty.
129 * Assume that the text of the first node is plaintext and not
148 * Assume that the text of the first node is plaintext and not
170 * Assume that the text of the first node i
[all...]
H A DTrunkNode.java63 * Represents a node on the trunk or main branch of a version control Archive.
65 * <p>A {@code TrunkNode} stores the deltas between the node's
70 * points to the node corresponding to the previous revision.</p>
107 * Set the next node in the RCS logical hierarcy.
108 * Update the _parent and _child node accordingly.
112 public void setRCSNext(Node node) argument
114 super.setRCSNext(node);
119 this.parent = node;
H A DNode.java102 * The version number for this node.
146 * Creates a copy of a node. Only used internally.
147 * @param other The node to copy.
160 * Creates a node with the given version number.
161 * @param vernum The version number for the node.
162 * @param rcsnext The next node in the RCS logical hierarchy.
177 * Creates a new node of the adequate type for the given version number.
178 * @param vernum The version number for the node.
179 * @param rcsnext The next node in the RCS logical hierarchy.
180 * @return The newly created node
329 setRCSNext(Node node) argument
391 addBranch(BranchNode node) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DSubversionRepository.java91 private static String getValue(Node node) { argument
92 if (node == null) {
96 Node n = node.getFirstChild();

Completed in 13 milliseconds