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

/opengrok/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.
98 * Return the last (leaf) node in the branch this node belongs to.
99 * @return The leaf node.
113 * Set the next node in the RCS logical hierarcy.
114 * Update the _parent and _child node accordingly.
116 * a node wit
118 setRCSNext(Node node) argument
[all...]
H A DPath.java71 * to the last node in the path.
92 * Add a node to the Path.
93 * @param node The Node to add.
95 public void add(Node node) argument
97 path.add(node);
111 * Return the last node in the path or null if the path is empty.
112 * @return the last node in the path or null if the path is empty.
130 * Assume that the text of the first node is plaintext and not
145 * Assume that the text of the first node is plaintext and not
163 * 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 {@link TrunkNode 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.
111 public void setRCSNext(Node node) argument
113 super.setRCSNext(node);
118 this.parent = node;
H A DNode.java102 * The version number for this node.
131 * Creates a copy of a node. Only used internally.
132 * @param other The node to copy.
145 * Creates a node with the given version number.
146 * @param vernum The version number for the node.
147 * @param rcsnext The next node in the RCS logical hierarchy.
161 * Creates a new node of the adequate type for the given version number.
162 * @param vernum The version number for the node.
163 * @param rcsnext The next node in the RCS logical hierarchy.
164 * @return The newly created node
314 setRCSNext(Node node) argument
374 addBranch(BranchNode node) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/history/
H A DSubversionRepository.java93 private String getValue(Node node) { argument
94 if (node == null) {
98 Node n = node.getFirstChild();

Completed in 177 milliseconds