Searched refs:node (Results 1 - 12 of 12) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/diff/myers/
H A DPathNode.java61 * A node in a diffpath.
76 /** The previous node in the path. */
80 * Concatenates a new path node with an existing diffpath.
81 * @param i The position in the original sequence for the new node.
82 * @param j The position in the revised sequence for the new node.
83 * @param prev The previous node in the path.
93 * Is this node a {@link Snake Snake node}?
94 * @return true if this is a {@link Snake Snake node}
99 * Is this a bootstrap node
[all...]
H A DMyersDiff.java152 PathNode node = new DiffNode(i, j, prev);
162 if (i > node.i)
163 node = new Snake(i, j, node);
165 diagonal[kmiddle] = node;
/opengrok-jel/web/static/
H A Dopengrok-tooltip.js41 * or a node instance.
53 * The delegate node to which event listeners should be attached. This
54 * node should be an ancestor of all trigger nodes bound to the
64 * The time to wait, after the mouse enters the trigger node, to display
71 * The time to wait, after the mouse leaves the trigger node, to hide
79 * node, to hide it, if the mouse has not left the trigger node
107 // Currently bound trigger node information
109 node : null,
115 // mousemove and mouseout are set on the trigger node
[all...]
H A Dopengrok.js26 var Y = YUI().use('node-style', 'node-screen', 'node-event-delegate', 'event-key');
195 var node, dstnode = Y.one('#linenums');
202 // the node from the DOM and thus lines are not addressable by
215 node = Y.Node.create(txtId + txtNum);
216 dstnode.insert(node);
305 var node = Y.Node.create(rcol + acol);
310 dstnode.insert(node);
321 content: function(node) {
[all...]
/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 DArchiveParser.jj283 Node node;
289 { node = arc.newNode(v); }
290 <DATE> d = date() { node.setDate(d); } <EOS>
291 <AUTHOR> s = id() { node.setAuthor(s); } <EOS>
292 <STATE> [ s = id() { node.setState(s); } ] <EOS>
293 <BRANCHES> ( v = version() { node.addBranch(arc.newBranchNode(v)); } )* <EOS>
294 <NEXT> [ v = version() { node.setRCSNext(arc.newNode(v));} ] <EOS>
295 ( newPhrase(node.phrases) )*
307 Node node;
314 node
[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 DArchive.java229 // now add the _head node
312 * Add a head node with the given version number.
405 Node node = newNode(vernum);
406 node.setLocker(user);
409 locked.remove(node);
413 locked.add(node);
493 Node node = (Node) nodes.get(vernum);
494 if (node == null)
496 node = Node.newNode(vernum, prev);
497 nodes.put(vernum, node);
[all...]
H A DArchiveParser.java364 Node node;
368 node = arc.newNode(v);
371 node.setDate(d);
375 node.setAuthor(s);
381 node.setState(s);
396 node.addBranch(arc.newBranchNode(v));
403 node.setRCSNext(arc.newNode(v));
408 newPhrases(node.phrases);
413 Node node;
417 node
[all...]
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...]
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...]
/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 18 milliseconds